Skip to content

Commit

Permalink
Merge pull request chipsalliance#180 from antmicro/bump-uhdm-integration
Browse files Browse the repository at this point in the history
Bump uhdm integration
  • Loading branch information
kamilrakoczy authored Oct 26, 2021
2 parents a0e41ff + 84ec1c5 commit e76d3c5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Generate matrix (yosys)
id: generate-matrix-yosys
run: |
matrix="$(cd UHDM-integration-tests && python list.py -d tests -s ibex swerv synthesis opentitan hello-uvm assignment-pattern Forever BitsCallOnType OneClass Continue AnonymousUnion FunctionOnDesignLevel ParameterUnpackedArray VoidFunction2Returns PatternStruct ImportedFunctionCallInModuleAndSubmodule VoidFunctionWithoutReturn cmake PutC OneThis CastInFunctionInGenBlock PatternType FunctionOutputArgument GetC ForkJoinTypes EnumFirstInInitial ImportFunction DpiChandle Disable EnumFirst TypedefOnFileLevel UnsizedConstantsParameterParsing Fork PatternInFunction TypedefVariableDimensions ParameterUnpackedLogicArray SelectFromUnpackedInFunction PatternReplication VoidFunction MultiplePrints BitSelectPartSelectInFunction ImportPackageWithFunction ParameterPackedArray)"
matrix="$(cd UHDM-integration-tests && python list.py -d tests -s ibex swerv synthesis opentitan hello-uvm assignment-pattern Forever BitsCallOnType OneClass Continue AnonymousUnion FunctionOnDesignLevel ParameterUnpackedArray VoidFunction2Returns PatternStruct ImportedFunctionCallInModuleAndSubmodule VoidFunctionWithoutReturn cmake PutC OneThis CastInFunctionInGenBlock PatternType FunctionOutputArgument GetC ForkJoinTypes EnumFirstInInitial ImportFunction DpiChandle Disable EnumFirst TypedefOnFileLevel UnsizedConstantsParameterParsing Fork PatternInFunction TypedefVariableDimensions ParameterUnpackedLogicArray SelectFromUnpackedInFunction PatternReplication VoidFunction MultiplePrints BitSelectPartSelectInFunction ImportPackageWithFunction ParameterPackedArray StringAssignment SystemFunctions)"
echo "::set-output name=matrix::$matrix"
echo "matrix yosys: $matrix"
Expand All @@ -89,7 +89,7 @@ jobs:
- name: Generate matrix (vcddiff)
id: generate-matrix-vcddiff
run: |
matrix="$(cd UHDM-integration-tests && python list.py -d tests -s ibex swerv synthesis opentitan hello-uvm assignment-pattern Forever BitsCallOnType OneClass Continue AnonymousUnion FunctionOnDesignLevel ParameterUnpackedArray VoidFunction2Returns PatternStruct ImportedFunctionCallInModuleAndSubmodule VoidFunctionWithoutReturn cmake PutC OneThis CastInFunctionInGenBlock PatternType FunctionOutputArgument GetC ForkJoinTypes EnumFirstInInitial ImportFunction DpiChandle Disable EnumFirst TypedefOnFileLevel UnsizedConstantsParameterParsing Fork PatternInFunction TypedefVariableDimensions ParameterUnpackedLogicArray SelectFromUnpackedInFunction PatternReplication VoidFunction MultiplePrints BitSelectPartSelectInFunction ImportPackageWithFunction ParameterPackedArray)"
matrix="$(cd UHDM-integration-tests && python list.py -d tests -s ibex swerv synthesis opentitan hello-uvm assignment-pattern Forever BitsCallOnType OneClass Continue AnonymousUnion FunctionOnDesignLevel ParameterUnpackedArray VoidFunction2Returns PatternStruct ImportedFunctionCallInModuleAndSubmodule VoidFunctionWithoutReturn cmake PutC OneThis CastInFunctionInGenBlock PatternType FunctionOutputArgument GetC ForkJoinTypes EnumFirstInInitial ImportFunction DpiChandle Disable EnumFirst TypedefOnFileLevel UnsizedConstantsParameterParsing Fork PatternInFunction TypedefVariableDimensions ParameterUnpackedLogicArray SelectFromUnpackedInFunction PatternReplication VoidFunction MultiplePrints BitSelectPartSelectInFunction ImportPackageWithFunction ParameterPackedArray StringAssignment SystemFunctions)"
matrix=$(echo $matrix | sed "s/tests\///g")
echo "::set-output name=matrix::$matrix"
echo "matrix vcddiff: $matrix"
Expand Down
2 changes: 1 addition & 1 deletion UHDM-integration-tests
Submodule UHDM-integration-tests updated 46 files
+2 −0 tests/ArraySize/Makefile.in
+40 −0 tests/ArraySize/main.cpp
+4 −0 tests/ArraySize/top.sv
+6 −0 tests/ArraySize/yosys_script
+2 −0 tests/AssignBitsCallToSubmoduleParameter/Makefile.in
+40 −0 tests/AssignBitsCallToSubmoduleParameter/main.cpp
+20 −0 tests/AssignBitsCallToSubmoduleParameter/top.sv
+6 −0 tests/AssignBitsCallToSubmoduleParameter/yosys_script
+2 −0 tests/ParameterUnsignedInt/Makefile.in
+40 −0 tests/ParameterUnsignedInt/main.cpp
+4 −0 tests/ParameterUnsignedInt/top.sv
+6 −0 tests/ParameterUnsignedInt/yosys_script
+2 −0 tests/ParameterWithUnderscoreValue/Makefile.in
+40 −0 tests/ParameterWithUnderscoreValue/main.cpp
+8 −0 tests/ParameterWithUnderscoreValue/top.sv
+6 −0 tests/ParameterWithUnderscoreValue/yosys_script
+2 −0 tests/ParameterWithUnderscoreValueDivided/Makefile.in
+40 −0 tests/ParameterWithUnderscoreValueDivided/main.cpp
+11 −0 tests/ParameterWithUnderscoreValueDivided/top.sv
+6 −0 tests/ParameterWithUnderscoreValueDivided/yosys_script
+5 −0 tests/ParameterWithUnderscoreValueDividedPassedFromCommandLine/Makefile.in
+40 −0 tests/ParameterWithUnderscoreValueDividedPassedFromCommandLine/main.cpp
+7 −0 tests/ParameterWithUnderscoreValueDividedPassedFromCommandLine/top.sv
+6 −0 tests/ParameterWithUnderscoreValueDividedPassedFromCommandLine/yosys_script
+2 −0 tests/ReturnEnumArray/Makefile.in
+40 −0 tests/ReturnEnumArray/main.cpp
+14 −0 tests/ReturnEnumArray/top.sv
+6 −0 tests/ReturnEnumArray/yosys_script
+2 −0 tests/StringAssignment/Makefile.in
+39 −0 tests/StringAssignment/main.cpp
+6 −0 tests/StringAssignment/top.sv
+6 −0 tests/StringAssignment/yosys_script
+2 −0 tests/SystemFunctions/Makefile.in
+43 −0 tests/SystemFunctions/main.cpp
+148 −0 tests/SystemFunctions/top.sv
+6 −0 tests/SystemFunctions/yosys_script
+1 −1 tests/TypedefVariableDimensions/yosys_script
+0 −1 tests/UnsizedConstantsParameterParsing/yosys_script
+14 −0 tests/opentitan/module_tests/otbn_stack/Makefile.in
+47 −0 tests/opentitan/module_tests/otbn_stack/main.cpp
+90 −0 tests/opentitan/module_tests/spi_device/Makefile.in
+47 −0 tests/opentitan/module_tests/spi_device/main.cpp
+31 −0 tests/opentitan/module_tests/spi_device/spi_device.vlt
+22 −0 tests/opentitan/module_tests/xbar_peri/Makefile.in
+47 −0 tests/opentitan/module_tests/xbar_peri/main.cpp
+15 −0 tests/opentitan/module_tests/xbar_peri/xbar_peri.vlt

0 comments on commit e76d3c5

Please sign in to comment.