Changeset 871b664
- Timestamp:
- Mar 1, 2017, 3:38:33 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- 088a5cd, bf8da66
- Parents:
- a62cbb3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
configure
ra62cbb3 r871b664 3224 3224 3225 3225 3226 echo $build_threading3227 3228 3226 if test "x$prefix" = "xNONE"; then 3229 3227 cfa_prefix=${ac_default_prefix} -
src/tests/Makefile.am
ra62cbb3 r871b664 40 40 41 41 all-local : 42 @+python test.py ${quick_test}42 @+python test.py --debug=${debug} --concurrent=${concurrent} ${quick_test} 43 43 44 44 all-tests : -
src/tests/Makefile.in
ra62cbb3 r871b664 657 657 658 658 all-local : 659 @+python test.py ${quick_test}659 @+python test.py --debug=${debug} --concurrent=${concurrent} ${quick_test} 660 660 661 661 all-tests : -
src/tests/test.py
ra62cbb3 r871b664 33 33 34 34 def listTestsFolder(folder) : 35 path = ('./.expect/%s' % folder) if folder else './expect' 35 path = ('./.expect/%s/' % folder) if folder else './.expect/' 36 subpath = "%s/" % folder if folder else "" 36 37 37 38 # tests directly in the .expect folder will always be processed 38 return map(lambda fname: Test(fname, '%s/%s' % (path, fname)),39 return map(lambda fname: Test(fname, subpath + fname), 39 40 [splitext(f)[0] for f in listdir( path ) 40 41 if not f.startswith('.') and f.endswith('.txt') … … 46 47 47 48 # tests directly in the .expect folder will always be processed 48 generic_list = listTestsFolder( " ." )49 generic_list = listTestsFolder( "" ) 49 50 50 51 # tests in the machineType folder will be ran only for the corresponding compiler
Note: See TracChangeset
for help on using the changeset viewer.