Changeset b90aace
- Timestamp:
- Sep 25, 2018, 11:02:00 AM (6 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- 7428ad9
- Parents:
- 13a984c
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Jenkinsfile
r13a984c rb90aace 128 128 //Run the tests from the tests directory 129 129 if ( Settings.RunAllTests ) { 130 sh 'make --no-print-directory -C tests all-tests debug=yes'131 sh 'make --no-print-directory -C tests all-tests debug=no '130 sh 'make --no-print-directory -C tests timeouts="--timeout=600" all-tests debug=yes' 131 sh 'make --no-print-directory -C tests timeouts="--timeout=600" all-tests debug=no ' 132 132 } 133 133 else { 134 sh 'make --no-print-directory -C tests '134 sh 'make --no-print-directory -C tests timeouts="--timeout=600"' 135 135 } 136 136 } -
tests/Makefile.am
r13a984c rb90aace 23 23 24 24 concurrent= 25 timeouts= 25 26 26 27 TEST_PY = python ${builddir}/test.py … … 50 51 #---------------------------------------------------------------------------------------------------------------- 51 52 all-local : 52 @+${TEST_PY} --debug=${debug} --install=${installed} ${concurrent} ${ quick_test}53 @+${TEST_PY} --debug=${debug} --install=${installed} ${concurrent} ${timeouts} ${quick_test} 53 54 54 55 all-tests : 55 @+${TEST_PY} -- all --debug=${debug} --install=${installed} ${concurrent}# '@' => do not echo command (SILENT), '+' => allows recursive make from within python program56 @+${TEST_PY} --debug=${debug} --install=${installed} ${concurrent} ${timeouts} --all # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program 56 57 57 58 clean-local :
Note: See TracChangeset
for help on using the changeset viewer.