Changes in / [075d862:b98c913]


Ignore:
Location:
src/tests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • src/tests/Makefile.am

    r075d862 rb98c913  
    2828endif
    2929
     30
    3031# applies to both programs
    3132EXTRA_FLAGS =
    3233BUILD_FLAGS = -g -Wall -Wno-unused-function @CFA_FLAGS@ ${EXTRA_FLAGS}
    33 TEST_FLAGS = $(if $(test), 2> .err/${@}.log, )
    34 CFLAGS = ${TEST_FLAGS} ${BUILD_FLAGS}
     34CFLAGS = 2> .err/${@}.log ${BUILD_FLAGS}
    3535CC = @CFA_BINDIR@/@CFA_NAME@
    3636
  • src/tests/Makefile.in

    r075d862 rb98c913  
    125125CFA_NAME = @CFA_NAME@
    126126CFA_PREFIX = @CFA_PREFIX@
    127 CFLAGS = ${TEST_FLAGS} ${BUILD_FLAGS}
     127CFLAGS = 2> .err/${@}.log ${BUILD_FLAGS}
    128128CPP = @CPP@
    129129CPPFLAGS = @CPPFLAGS@
     
    231231@BUILD_CONCURRENCY_FALSE@concurrent_test =
    232232@BUILD_CONCURRENCY_TRUE@concurrent_test = coroutine thread monitor multi-monitor sched-int sched-ext preempt
    233 TEST_FLAGS = $(if $(test), 2> .err/${@}.log, )
    234233
    235234# applies to both programs
  • src/tests/test.py

    r075d862 rb98c913  
    136136
    137137                # build, skipping to next test on error
    138                 make_ret, _ = sh("""%s test=yes EXTRA_FLAGS="-quiet %s" %s 2> %s 1> /dev/null""" % (make_cmd, options, test.name, out_file), dry_run)
     138                make_ret, _ = sh("""%s EXTRA_FLAGS="-quiet %s" %s 2> %s 1> /dev/null""" % (make_cmd, options, test.name, out_file), dry_run)
    139139
    140140                # if the make command succeds continue otherwise skip to diff
Note: See TracChangeset for help on using the changeset viewer.