Changes in / [124400b:7ae39f0]


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/Makefile.am

    r124400b r7ae39f0  
    1111## Created On       : Sun May 31 09:08:15 2015
    1212## Last Modified By : Peter A. Buhr
    13 ## Last Modified On : Sat May 27 18:27:08 2023
    14 ## Update Count     : 190
     13## Last Modified On : Fri May 26 13:34:12 2023
     14## Update Count     : 180
    1515###############################################################################
    1616
     
    2626ARCH = ${if ${arch},"--arch=${arch}"}
    2727arch_support = "x86/x64/arm"
    28 TIMEOUT = ${if ${timeout},"--timeout=${timeout}"}
    2928DEBUG_FLAGS = -debug -g -O0
    3029
     
    3231
    3332archiveerrors=
     33concurrent=
     34timeouts=
    3435
    3536TEST_PY = python3 ${builddir}/test.py
     
    6667PRETTY_PATH = mkdir -p ${dir ${abspath ${@}}} && cd ${srcdir} &&
    6768
    68 .PHONY : concurrency list .validate .test_makeflags
     69.PHONY : list .validate .test_makeflags
    6970.INTERMEDIATE : .validate .validate.cfa .test_makeflags
    7071EXTRA_PROGRAMS = avl_test linkonce linking/mangling/anon .dummy_hack # build but do not install
     
    109110
    110111all-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 program
     112        @+${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
    112113
    113114install : all-local # PAB only
     
    116117
    117118quick :
    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}
    119120
    120121concurrency :
    121         @+${TEST_PY} --debug=${debug} --install=${installed} ${TIMEOUT} ${ARCH} -Iconcurrency
     122        @+${TEST_PY} --debug=${debug} --install=${installed} ${ARCH} -Iconcurrent
    122123
    123124list :
    124         @+${TEST_PY} --list
     125        @+${TEST_PY} --list ${concurrent}
    125126
    126127help :
    127128        @echo "user targets:"
    128129        @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}]"
    130131        @echo ""
    131132        @echo "    Run the short (quick) test suite."
    132133        @echo "    $$ make quick [debug=yes/no] [installed=yes/no] [arch=${arch_support}]"
    133134        @echo ""
    134         @echo "    Run the concurrency test 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}]"
    136137        @echo ""
    137138        @echo "    List all tests in the test suite."
Note: See TracChangeset for help on using the changeset viewer.