-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
vss-tools: update to current master commit
Update the vss-tools submodule to the current master commit to get various improvements including the change of 'enum' to 'allowed' in the rule set. Submodule vss-tools 579c58f..0894e95: > Fixing versioning according to packaging guides > Adding FAQ > vspec2binary.py enum name replaced by allowed. > Binary tool enum name replaced by allowed. > [CORE] Move from `enum` to `allowed` > Adding support for types listed in vehicle-signal-specification in (#134) > Feature/validate nameing conventions (#128) > [BUILD] Python version updated to 3.8.12 > [BUILD] Move from `requirements.txt` to `Pipfile` > go module version update. > Use argparse for YAML generation. Allow optional strict checking (#117) > Removing dead code in csv generator (#126) > Removing obsolete entries from VSS-tools (#124) Signed-off-by: Stephen Lawrence <stephen.lawrence@renesas.com>
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule vss-tools
updated
28 files
+23 −11 | .github/workflows/buildcheck.yml | |
+38 −0 | FAQ.md | |
+1 −1 | Pipfile | |
+75 −56 | Pipfile.lock | |
+4 −9 | README.md | |
+5 −5 | binary/README.md | |
+15 −15 | binary/binarytool.c | |
+55 −55 | binary/c_parser/cparserlib.c | |
+7 −7 | binary/c_parser/cparserlib.h | |
+3 −3 | binary/c_parser/testparser.c | |
+5 −5 | binary/go_parser/datamodel/datamodel.go | |
+1 −1 | binary/go_parser/parserlib/go.mod | |
+45 −45 | binary/go_parser/parserlib/parser.go | |
+2 −2 | binary/go_parser/testparser.go | |
+2 −5 | contrib/vspec2c.py | |
+0 −6 | requirements.txt | |
+1 −1 | setup.py | |
+0 −2 | tests/model/test_contants.py | |
+19 −19 | tests/model/test_vsstree.py | |
+19 −26 | vspec/__init__.py | |
+57 −17 | vspec/config.yaml | |
+0 −2 | vspec/model/constants.py | |
+40 −14 | vspec/model/vsstree.py | |
+19 −19 | vspec2binary.py | |
+7 −12 | vspec2csv.py | |
+2 −2 | vspec2franca.py | |
+16 −6 | vspec2json.py | |
+27 −43 | vspec2yaml.py |