Changes in tests/Makefile.am [e3a5a73:dcfedca]
- File:
-
- 1 edited
-
tests/Makefile.am (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tests/Makefile.am
re3a5a73 rdcfedca 22 22 debug=yes 23 23 installed=no 24 archiveerrors= 24 25 25 26 INSTALL_FLAGS=-in-tree … … 44 45 CC = @CFACC@ 45 46 46 PRETTY_PATH= cd ${srcdir} &&47 PRETTY_PATH=mkdir -p $(dir $(abspath ${@})) && cd ${srcdir} && 47 48 48 49 .PHONY: list .validate … … 56 57 #---------------------------------------------------------------------------------------------------------------- 57 58 all-local : 58 @+${TEST_PY} --debug=${debug} --install=${installed} ${concurrent} ${timeouts} ${quick_test}59 @+${TEST_PY} --debug=${debug} --install=${installed} --archive-errors=${archiveerrors} ${concurrent} ${timeouts} ${quick_test} 59 60 60 61 all-tests : 61 @+${TEST_PY} --debug=${debug} --install=${installed} ${concurrent} ${timeouts} --all # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program62 @+${TEST_PY} --debug=${debug} --install=${installed} --archive-errors=${archiveerrors} ${concurrent} ${timeouts} --all # '@' => do not echo command (SILENT), '+' => allows recursive make from within python program 62 63 63 64 clean-local : … … 85 86 #---------------------------------------------------------------------------------------------------------------- 86 87 88 # Use for all tests, make sure the path are correct and all flags are added 89 CFACOMPILETEST=$(PRETTY_PATH) $(CFACOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) $($(shell echo "${@}_FLAGS" | sed 's/-\|\//_/g')) 90 91 # Use for tests that either generate an executable, print directyl to stdout or the make command is expected to fail 92 CFATEST_STDOUT=$(CFACOMPILETEST) -o $(abspath ${@}) 93 94 # Use for tests where the make command is expecte to succeed but the expected.txt should be compared to stderr 95 CFATEST_STDERR=$(CFACOMPILETEST) 2> $(abspath ${@}) 96 97 #---------------------------------------------------------------------------------------------------------------- 98 87 99 # implicit rule so not all test require a rule 88 100 % : %.cfa $(CFACC) 89 $( PRETTY_PATH) $(CFACOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@})101 $(CFATEST_STDOUT) 90 102 91 103 % : %.cpp 92 104 $(PRETTY_PATH) $(CXXCOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 93 105 94 declarationSpecifier: declarationSpecifier.cfa $(CFACC) 95 $(PRETTY_PATH) $(CFACOMPILE) -CFA -XCFA -p $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 106 #------------------------------------------------------------------------------ 107 # TARGET WITH STANDARD RULE BUT CUSTOM FLAGS 108 #------------------------------------------------------------------------------ 109 # Expected failures 110 declarationSpecifier_FLAGS= -CFA -XCFA -p 111 gccExtensions_FLAGS= -CFA -XCFA -p 112 extension_FLAGS= -CFA -XCFA -p 113 attributes_FLAGS= -CFA -XCFA -p 114 functions_FLAGS= -CFA -XCFA -p 115 KRfunctions_FLAGS= -CFA -XCFA -p 116 gmp_FLAGS= -lgmp 96 117 97 gccExtensions : gccExtensions.cfa $(CFACC) 98 $(PRETTY_PATH) $(CFACOMPILE) -CFA -XCFA -p $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 118 #------------------------------------------------------------------------------ 119 # Expected failures 120 completeTypeError_FLAGS= -DERR1 99 121 100 extension : extension.cfa $(CFACC) 101 $(PRETTY_PATH) $(CFACOMPILE) -CFA -XCFA -p $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 122 #------------------------------------------------------------------------------ 123 # CUSTOM TARGET 124 #------------------------------------------------------------------------------ 125 typedefRedef-ERR1: typedefRedef.cfa $(CFACC) 126 $(CFATEST_STDOUT) -DERR1 102 127 103 a ttributes : attributes.cfa $(CFACC)104 $( PRETTY_PATH) $(CFACOMPILE) -CFA -XCFA -p $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@})128 alloc-ERROR: alloc.cfa $(CFACC) 129 $(CFATEST_STDOUT) -DERR1 105 130 106 functions: functions.cfa $(CFACC)107 $( PRETTY_PATH) $(CFACOMPILE) -CFA -XCFA -p $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@})131 nested-types-ERR1: nested-types.cfa $(CFACC) 132 $(CFATEST_STDOUT) -DERR1 108 133 109 KRfunctions : KRfunctions.cfa $(CFACC)110 $( PRETTY_PATH) $(CFACOMPILE) -CFA -XCFA -p $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@})134 nested-types-ERR2: nested-types.cfa $(CFACC) 135 $(CFATEST_STDOUT) -DERR2 111 136 112 sched-ext-parse : sched-ext-parse.c$(CFACC)113 $( PRETTY_PATH) $(CFACOMPILE) -CFA -XCFA -p $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@})137 raii/dtor-early-exit-ERR1: raii/dtor-early-exit.cfa $(CFACC) 138 $(CFATEST_STDOUT) -DERR1 114 139 115 gmp : gmp.cfa $(CFACC) 116 $(PRETTY_PATH) $(CFACOMPILE) -lgmp $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 140 raii/dtor-early-exit-ERR2: raii/dtor-early-exit.cfa $(CFACC) 141 $(CFATEST_STDOUT) -DERR2 142 143 raii/memberCtors-ERR1: raii/memberCtors.cfa $(CFACC) 144 $(CFATEST_STDOUT) -DERR1 145 146 raii/ctor-autogen-ERR1: raii/ctor-autogen.cfa $(CFACC) 147 $(CFATEST_STDOUT) -DERR1 117 148 118 149 #builtins 119 150 builtins/sync: builtins/sync.cfa $(CFACC) 120 $(PRETTY_PATH) $(CFACOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) 2> $(abspath ${@}) -fsyntax-only 121 122 #------------------------------------------------------------------------------ 123 124 #To make errors path independent we need to cd into the correct directories 125 completeTypeError : completeTypeError.cfa $(CFACC) 126 $(PRETTY_PATH) $(CFACOMPILE) -DERR1 $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 127 128 typedefRedef-ERR1: typedefRedef.cfa $(CFACC) 129 $(PRETTY_PATH) $(CFACOMPILE) -DERR1 $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 130 131 alloc-ERROR: alloc.cfa $(CFACC) 132 $(PRETTY_PATH) $(CFACOMPILE) -DERR1 $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 133 134 fallthrough-ERROR: fallthrough.cfa $(CFACC) 135 $(PRETTY_PATH) $(CFACOMPILE) -DERR1 $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 136 137 nested-types-ERR1: nested-types.cfa $(CFACC) 138 $(PRETTY_PATH) $(CFACOMPILE) -DERR1 $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 139 140 nested-types-ERR2: nested-types.cfa $(CFACC) 141 $(PRETTY_PATH) $(CFACOMPILE) -DERR2 $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 142 143 # Constructor/destructor tests 144 raii/dtor-early-exit-ERR1: raii/dtor-early-exit.cfa $(CFACC) 145 $(PRETTY_PATH) $(CFACOMPILE) -DERR1 $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 146 147 raii/dtor-early-exit-ERR2: raii/dtor-early-exit.cfa $(CFACC) 148 $(PRETTY_PATH) $(CFACOMPILE) -DERR2 $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 149 150 raii/memberCtors-ERR1: raii/memberCtors.cfa $(CFACC) 151 $(PRETTY_PATH) $(CFACOMPILE) -DERR1 $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 152 153 raii/ctor-autogen-ERR1: raii/ctor-autogen.cfa $(CFACC) 154 $(PRETTY_PATH) $(CFACOMPILE) -DERR1 $(shell realpath --relative-to=${srcdir} ${<}) -o $(abspath ${@}) 151 $(CFATEST_STDERR) -fsyntax-only 155 152 156 153 # Warnings 157 154 warnings/self-assignment: warnings/self-assignment.cfa $(CFACC) 158 $( PRETTY_PATH) $(CFACOMPILE) $(shell realpath --relative-to=${srcdir} ${<}) 2> $(abspath ${@}) -fsyntax-only155 $(CFATEST_STDERR) -fsyntax-only
Note:
See TracChangeset
for help on using the changeset viewer.