Skip to content

Commit

Permalink
disable unit test of hltPrintMenuVersions in non-x86-64 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
missirol committed Oct 10, 2023
1 parent ffa2eee commit 2aea2e7
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions HLTrigger/Configuration/test/BuildFile.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
<!-- test access to EDM files used in HLT-AddOnTests and HLT-Validation tests -->
<test name="testAccessToEDMInputsOfHLTTests" command="testAccessToEDMInputsOfHLTTests.sh"/>

<!-- test script hltPrintMenuVersions -->
<test name="test_hltPrintMenuVersions" command="test_hltPrintMenuVersions.sh"/>
<!-- test script hltPrintMenuVersions
enabled only for the x86-64 architecture, because the python module cx_Oracle
does not fully work in CMSSW builds with non-x86-64 architectures
-->
<ifarch value="x86_64">
<test name="test_hltPrintMenuVersions" command="test_hltPrintMenuVersions.sh"/>
</ifarch>

<!-- test script hltMenuContentToCSVs -->
<test name="test_hltMenuContentToCSVs" command="test_hltMenuContentToCSVs.sh"/>

0 comments on commit 2aea2e7

Please sign in to comment.