Changes in / [124400b:7ae39f0]
- File:
-
- 1 edited
-
tests/Makefile.am (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/Makefile.am
r124400b r7ae39f0 11 11 ## Created On : Sun May 31 09:08:15 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Sat May 27 18:27:08202314 ## Update Count : 1 9013 ## Last Modified On : Fri May 26 13:34:12 2023 14 ## Update Count : 180 15 15 ############################################################################### 16 16 … … 26 26 ARCH = ${if ${arch},"--arch=${arch}"} 27 27 arch_support = "x86/x64/arm" 28 TIMEOUT = ${if ${timeout},"--timeout=${timeout}"}29 28 DEBUG_FLAGS = -debug -g -O0 30 29 … … 32 31 33 32 archiveerrors= 33 concurrent= 34 timeouts= 34 35 35 36 TEST_PY = python3 ${builddir}/test.py … … 66 67 PRETTY_PATH = mkdir -p ${dir ${abspath ${@}}} && cd ${srcdir} && 67 68 68 .PHONY : concurrencylist .validate .test_makeflags69 .PHONY : list .validate .test_makeflags 69 70 .INTERMEDIATE : .validate .validate.cfa .test_makeflags 70 71 EXTRA_PROGRAMS = avl_test linkonce linking/mangling/anon .dummy_hack # build but do not install … … 109 110 110 111 all-local : # This name is important to automake and implies the default build target. 111 @+${TEST_PY} --debug=${debug} --install=${installed} --invariant --archive-errors=${archiveerrors} ${ TIMEOUT} ${ARCH} --all # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program112 @+${TEST_PY} --debug=${debug} --install=${installed} --invariant --archive-errors=${archiveerrors} ${concurrent} ${timeouts} ${ARCH} --all # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program 112 113 113 114 install : all-local # PAB only … … 116 117 117 118 quick : 118 @+${TEST_PY} --debug=${debug} --install=${installed} --archive-errors=${archiveerrors} ${ ARCH} ${quick_test}119 @+${TEST_PY} --debug=${debug} --install=${installed} --archive-errors=${archiveerrors} ${concurrent} ${timeouts} ${ARCH} ${quick_test} 119 120 120 121 concurrency : 121 @+${TEST_PY} --debug=${debug} --install=${installed} ${ TIMEOUT} ${ARCH} -Iconcurrency122 @+${TEST_PY} --debug=${debug} --install=${installed} ${ARCH} -Iconcurrent 122 123 123 124 list : 124 @+${TEST_PY} --list 125 @+${TEST_PY} --list ${concurrent} 125 126 126 127 help : 127 128 @echo "user targets:" 128 129 @echo " Run the complete test suite." 129 @echo " $$ make (null) / tests [debug=yes/no] [installed=yes/no] [ timeout=integer-seconds] [arch=${arch_support}]"130 @echo " $$ make (null) / tests [debug=yes/no] [installed=yes/no] [arch=${arch_support}]" 130 131 @echo "" 131 132 @echo " Run the short (quick) test suite." 132 133 @echo " $$ make quick [debug=yes/no] [installed=yes/no] [arch=${arch_support}]" 133 134 @echo "" 134 @echo " Run the concurren cytest suite."135 @echo " $$ make concurrency [debug=yes/no] [installed=yes/no] [ timeout=integer-seconds] [arch=${arch_support}]"135 @echo " Run the concurrent test suite." 136 @echo " $$ make concurrency [debug=yes/no] [installed=yes/no] [arch=${arch_support}]" 136 137 @echo "" 137 138 @echo " List all tests in the test suite."
Note:
See TracChangeset
for help on using the changeset viewer.