Changes in tests/Makefile.am [107b01a:e3a5a73]
- File:
-
- 1 edited
-
tests/Makefile.am (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/Makefile.am
r107b01a re3a5a73 23 23 installed=no 24 24 25 INSTALL_FLAGS=-in-tree 26 DEBUG_FLAGS=-debug -O0 27 25 28 quick_test=avl_test operators numericConstants expression enum array typeof cast raii/dtor-early-exit raii/init_once attributes 26 29 … … 28 31 timeouts= 29 32 30 TEST_PY = python ${builddir}/test.py33 TEST_PY = python3 ${builddir}/test.py 31 34 32 35 # applies to both programs … … 36 39 -Wno-unused-function \ 37 40 -quiet @CFA_FLAGS@ \ 38 -DIN_DIR="${ srcdir}/.in/"41 -DIN_DIR="${abs_srcdir}/.in/" 39 42 40 43 AM_CFLAGS += ${DEBUG_FLAGS} ${INSTALL_FLAGS} ${ARCH_FLAGS} … … 48 51 49 52 avl_test_SOURCES = avltree/avl_test.cfa avltree/avl0.cfa avltree/avl1.cfa avltree/avl2.cfa avltree/avl3.cfa avltree/avl4.cfa avltree/avl-private.cfa 50 # automake doesn't know we still need C rules so pretend like we have a C program51 _dummy_hack_SOURCES = .dummy_hack.c 53 # automake doesn't know we still need C/CPP rules so pretend like we have a C program 54 _dummy_hack_SOURCES = .dummy_hack.c .dummy_hackxx.cpp 52 55 53 56 #---------------------------------------------------------------------------------------------------------------- … … 74 77 @echo "int main() { return 0; }" > ${@} 75 78 79 .dummy_hackxx.cpp: 80 @echo "int bar() { return 0; }" > ${@} 81 76 82 concurrency : 77 83 @+${TEST_PY} --debug=${debug} --install=${installed} -Iconcurrent … … 82 88 % : %.cfa $(CFACC) 83 89 $(PRETTY_PATH) $(CFACOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 90 91 % : %.cpp 92 $(PRETTY_PATH) $(CXXCOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 84 93 85 94 declarationSpecifier: declarationSpecifier.cfa $(CFACC)
Note:
See TracChangeset
for help on using the changeset viewer.