Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/Makefile.in

    r3a5131ed r871b664  
    3737build_triplet = @build@
    3838host_triplet = @host@
     39@BUILD_CONCURRENCY_TRUE@am__append_1 = coroutine thread monitor
    3940EXTRA_PROGRAMS = fstream_test$(EXEEXT) vector_test$(EXEEXT) \
    4041        avl_test$(EXEEXT) constant0-1DP$(EXEEXT) \
     
    222223top_srcdir = @top_srcdir@
    223224debug = yes
     225quick_test = vector_test avl_test operators numericConstants \
     226        expression enum array typeof cast dtor-early-exit init_once \
     227        $(am__append_1)
     228@BUILD_CONCURRENCY_FALSE@concurrent = no
     229@BUILD_CONCURRENCY_TRUE@concurrent = yes
    224230
    225231# applies to both programs
     
    651657
    652658all-local :
    653         @+python test.py vector_test avl_test operators numericConstants expression enum array typeof cast dtor-early-exit init_once coroutine thread
     659        @+python test.py --debug=${debug} --concurrent=${concurrent} ${quick_test}
    654660
    655661all-tests :
    656         @+python test.py --all --debug=${debug}         # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
     662        @+python test.py --all --debug=${debug} --concurrent=${concurrent}              # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program
    657663
    658664clean-local :
     
    660666
    661667list :
    662         @+python test.py --list
     668        @+python test.py --list --concurrent=${concurrent}
    663669
    664670constant0-1DP : constant0-1.c
Note: See TracChangeset for help on using the changeset viewer.