Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/Makefile.in

    r481115f r0ad0c55  
    9191build_triplet = @build@
    9292host_triplet = @host@
    93 @BUILD_CONCURRENCY_TRUE@am__append_1 = coroutine thread monitor
    94 @BUILD_DEBUG_FALSE@am__append_2 = -nodebug
    95 @BUILD_DEBUG_TRUE@@BUILD_RELEASE_FALSE@am__append_3 = -debug
    96 @BUILD_DEBUG_TRUE@@BUILD_RELEASE_TRUE@am__append_4 = ${DEBUG_FLAGS}
     93@BUILD_DEBUG_FALSE@am__append_1 = -nodebug
     94@BUILD_DEBUG_TRUE@@BUILD_RELEASE_FALSE@am__append_2 = -debug
     95@BUILD_DEBUG_TRUE@@BUILD_RELEASE_TRUE@am__append_3 = ${DEBUG_FLAGS}
    9796EXTRA_PROGRAMS = fstream_test$(EXEEXT) vector_test$(EXEEXT) \
    9897        avl_test$(EXEEXT)
     
    314313top_srcdir = @top_srcdir@
    315314debug = yes
    316 quick_test = vector_test avl_test operators numericConstants \
    317         expression enum array typeof cast dtor-early-exit init_once \
    318         attributes $(am__append_1)
    319 @BUILD_CONCURRENCY_FALSE@concurrent = no
    320 @BUILD_CONCURRENCY_TRUE@concurrent = yes
    321 @BUILD_CONCURRENCY_FALSE@concurrent_test =
    322 @BUILD_CONCURRENCY_TRUE@concurrent_test = \
    323 @BUILD_CONCURRENCY_TRUE@        coroutine               \
    324 @BUILD_CONCURRENCY_TRUE@        fmtLines                \
    325 @BUILD_CONCURRENCY_TRUE@        pingpong                \
    326 @BUILD_CONCURRENCY_TRUE@        prodcons                \
    327 @BUILD_CONCURRENCY_TRUE@        thread                  \
    328 @BUILD_CONCURRENCY_TRUE@        matrixSum               \
    329 @BUILD_CONCURRENCY_TRUE@        monitor                 \
    330 @BUILD_CONCURRENCY_TRUE@        multi-monitor           \
    331 @BUILD_CONCURRENCY_TRUE@        boundedBuffer           \
    332 @BUILD_CONCURRENCY_TRUE@        preempt                 \
    333 @BUILD_CONCURRENCY_TRUE@        sched-int-block         \
    334 @BUILD_CONCURRENCY_TRUE@        sched-int-disjoint      \
    335 @BUILD_CONCURRENCY_TRUE@        sched-int-wait          \
    336 @BUILD_CONCURRENCY_TRUE@        sched-ext-barge         \
    337 @BUILD_CONCURRENCY_TRUE@        sched-ext-dtor          \
    338 @BUILD_CONCURRENCY_TRUE@        sched-ext-else          \
    339 @BUILD_CONCURRENCY_TRUE@        sched-ext-parse         \
    340 @BUILD_CONCURRENCY_TRUE@        sched-ext-recurse       \
    341 @BUILD_CONCURRENCY_TRUE@        sched-ext-statment      \
    342 @BUILD_CONCURRENCY_TRUE@        sched-ext-when
    343 
     315quick_test = vector_test avl_test operators numericConstants expression enum array typeof cast dtor-early-exit init_once attributes
     316@BUILD_CONCURRENCY_FALSE@concurrent = '-Econcurrent'
     317@BUILD_CONCURRENCY_TRUE@concurrent =
    344318
    345319# applies to both programs
    346320DEBUG_FLAGS =
    347321BUILD_FLAGS = -g -Wall -Wno-unused-function -quiet @CFA_FLAGS@ \
    348         $(am__append_2) $(am__append_3) $(am__append_4)
    349 TEST_FLAGS = $(if $(test), 2> .err/${@}.log, )
     322        $(am__append_1) $(am__append_2) $(am__append_3)
     323TEST_FLAGS = $(if $(test), 2> $(test), )
    350324AM_CFLAGS = ${TEST_FLAGS} ${BUILD_FLAGS}
    351325fstream_test_SOURCES = fstream_test.c
    352 fstream_test_CFLAGS = $(if $(test), 2>> .err/fstream_test.log, ) ${BUILD_FLAGS}
     326fstream_test_CFLAGS = $(if $(test), 2>> $(test), ) ${BUILD_FLAGS}
    353327vector_test_SOURCES = vector/vector_int.c vector/array.c vector/vector_test.c
    354 vector_test_CFLAGS = $(if $(test), 2>> .err/vector_test.log, ) ${BUILD_FLAGS}
     328vector_test_CFLAGS = $(if $(test), 2>> $(test), ) ${BUILD_FLAGS}
    355329avl_test_SOURCES = avltree/avl_test.c avltree/avl0.c avltree/avl1.c avltree/avl2.c avltree/avl3.c avltree/avl4.c avltree/avl-private.c
    356 avl_test_CFLAGS = $(if $(test), 2>> .err/avl_test.log, ) ${BUILD_FLAGS}
     330avl_test_CFLAGS = $(if $(test), 2>> $(test), ) ${BUILD_FLAGS}
    357331all: all-am
    358332
     
    833807
    834808all-local :
    835         @+python test.py --debug=${debug} --concurrent=${concurrent} ${quick_test}
     809        @+python test.py --debug=${debug} ${concurrent} ${quick_test}
    836810
    837811all-tests :
    838         @+python test.py --all --debug=${debug} --concurrent=${concurrent}              # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
     812        @+python test.py --all --debug=${debug} ${concurrent}           # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
    839813
    840814clean-local :
     
    842816
    843817list :
    844         @+python test.py --list --concurrent=${concurrent}
     818        @+python test.py --list ${concurrent}
    845819
    846820concurrency :
    847         @+python test.py --debug=${debug} --concurrent=${concurrent} ${concurrent_test}
     821        @+python test.py --debug=${debug} ${concurrent} ${concurrent_test}
    848822
    849823.dummy : .dummy.c @CFA_BINDIR@/@CFA_NAME@
Note: See TracChangeset for help on using the changeset viewer.