Changeset e3d4fd1
- Timestamp:
- May 17, 2023, 11:18:06 AM (2 years ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- c3e2131
- Parents:
- e4633b4
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified Makefile.am ¶
re4633b4 re3d4fd1 11 11 ## Created On : Sun May 31 22:14:18 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Fri May 12 18:30:01202314 ## Update Count : 4213 ## Last Modified On : Wed May 17 11:02:34 2023 14 ## Update Count : 56 15 15 ############################################################################### 16 16 … … 40 40 installed ?= no 41 41 ARCH = ${if ${arch},"arch=${arch}"} 42 arch_support = "x86/x64/arm" 43 44 # target "all" created by automake 42 45 43 46 check : … … 51 54 installtest : installcheck # synonym 52 55 53 help :54 @echo "user targets:"55 @echo " Compile compiler/runtime and run test suite."56 @echo " $$ make check / tests [debug=yes/no] [installed=yes/no] [arch=x86/x64/arm]"57 @echo ""58 @echo " Compile compiler/runtime, run test suite, and install."59 @echo " $$ make installcheck / installtests [debug=yes/no] installed=yes [arch=x86/x64/arm]"60 61 configure-libcfa : @LIBCFA_TARGET_MAKEFILES@62 @true63 64 56 status : @LIBCFA_TARGET_MAKEFILES@ 65 57 @echo -ne "translator\n\t" … … 67 59 @find libcfa -name config.status -printf "\n%h\n\t" -exec {} --config \; | sed "s/ /\n\t/g; s/\t'/\t/g; s/'\n/\n/g; s/^'//g; s/'$$//g" 68 60 61 help : 62 @echo "user targets:" 63 @echo " Compile compiler/runtime." 64 @echo " $$ make (null) / all" 65 @echo "" 66 @echo " Compile compiler/runtime and run test suite." 67 @echo " $$ make check / tests [debug=yes/no] [installed=yes/no] [arch=${arch_support}]" 68 @echo "" 69 @echo " Compile compiler/runtime, install, and run test suite on installed system." 70 @echo " $$ make installcheck / installtests [debug=yes/no] installed=yes [arch=${arch_support}]" 71 @echo "" 72 @echo " Print configuration parameters and system build information." 73 @echo " $$ make status" 74 75 configure-libcfa : @LIBCFA_TARGET_MAKEFILES@ 76 @true 77 69 78 @LIBCFA_TARGET_DIRS@ :: 70 79 ${MAKE} -C ${@} ${MAKECMDGOALS} -
TabularUnified tests/Makefile.am ¶
re4633b4 re3d4fd1 11 11 ## Created On : Sun May 31 09:08:15 2015 12 12 ## Last Modified By : Peter A. Buhr 13 ## Last Modified On : Fri May 12 18:03:57202314 ## Update Count : 17 613 ## Last Modified On : Tue May 16 09:27:48 2023 14 ## Update Count : 178 15 15 ############################################################################### 16 16 … … 24 24 debug ?= yes 25 25 installed ?= no 26 ARCH=${if ${arch},"--arch=${arch}"} 26 ARCH = ${if ${arch},"--arch=${arch}"} 27 arch_support = "x86/x64/arm" 28 DEBUG_FLAGS = -debug -g -O0 29 30 quick_test = avl_test operators numericConstants expression enum array typeof cast raii/dtor-early-exit raii/init_once attributes meta/dumpable 31 27 32 archiveerrors= 28 29 DEBUG_FLAGS=-debug -g -O030 31 quick_test=avl_test operators numericConstants expression enum array typeof cast raii/dtor-early-exit raii/init_once attributes meta/dumpable32 33 33 concurrent= 34 34 timeouts= … … 65 65 CFACCLINK = ${CFACCLOCAL} -quiet ${if ${test}, 2> ${test}, } ${${shell echo "${@}_FLAGSLD" | sed 's/-\|\//_/g'}} 66 66 67 PRETTY_PATH =mkdir -p ${dir ${abspath ${@}}} && cd ${srcdir} &&67 PRETTY_PATH = mkdir -p ${dir ${abspath ${@}}} && cd ${srcdir} && 68 68 69 69 .PHONY : list .validate .test_makeflags … … 128 128 @echo "user targets:" 129 129 @echo " Run the complete test suite." 130 @echo " $$ make (null) / tests [debug=yes/no] [installed=yes/no] [arch= x86/x64/arm]"130 @echo " $$ make (null) / tests [debug=yes/no] [installed=yes/no] [arch=${arch_support}]" 131 131 @echo "" 132 132 @echo " Run the short (quick) test suite." 133 @echo " $$ make quick [debug=yes/no] [installed=yes/no] [arch= x86/x64/arm]"133 @echo " $$ make quick [debug=yes/no] [installed=yes/no] [arch=${arch_support}]" 134 134 @echo "" 135 135 @echo " Run the concurrent test suite." 136 @echo " $$ make concurrency [debug=yes/no] [installed=yes/no] [arch= x86/x64/arm]"136 @echo " $$ make concurrency [debug=yes/no] [installed=yes/no] [arch=${arch_support}]" 137 137 @echo "" 138 138 @echo " List all tests in the test suite."
Note: See TracChangeset
for help on using the changeset viewer.