Changeset 0534c3c
- Timestamp:
- Jun 20, 2016, 10:53:22 AM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- fbaebc6
- Parents:
- ebcd82b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/tests/test.py
rebcd82b r0534c3c 3 3 4 4 from os import listdir 5 from os.path import isfile, join 5 from os.path import isfile, join, splitext 6 6 from subprocess import Popen, PIPE, STDOUT 7 7 … … 13 13 ################################################################################ 14 14 def listTests(): 15 list = [f.rstrip('.c') for f in listdir('.') 16 if not f.startswith('.') and ( 17 not isfile(f) or f.endswith('.c') 18 )] 15 list = [splitext(f)[0] for f in listdir('./.expect') 16 if not f.startswith('.') and f.endswith('.txt') 17 ] 19 18 20 19 return list … … 51 50 retcode = 0 52 51 if not generate : 53 # touch expected files so empty output are supported by default54 sh("touch .expect/%s.txt" % test, dry_run)55 56 52 # diff the output of the files 57 53 retcode = sh("diff .expect/%s.txt .out/%s.log" % (test, test), dry_run) … … 90 86 parser = argparse.ArgumentParser(description='Script which runs cforall tests') 91 87 parser.add_argument('--dry-run', help='Don\'t run the tests, only output the commands', action='store_true') 88 parser.add_argument('--list', help='List all test available', action='store_true') 92 89 parser.add_argument('--all', help='Run all test available', action='store_true') 93 parser.add_argument('-- generate-expected', help='Regenerate the .expect by running the specified tets, can be used with --all option', action='store_true')90 parser.add_argument('--regenerate-expected', help='Regenerate the .expect by running the specified tets, can be used with --all option', action='store_true') 94 91 parser.add_argument('tests', metavar='test', type=str, nargs='*', help='a list of tests to run') 95 92 96 93 options = parser.parse_args() 97 94 98 if len(options.tests) > 0 and options.all : 95 if (len(options.tests) > 0 and options.all and not options.list) \ 96 or (len(options.tests) == 0 and not options.all and not options.list) : 99 97 print('ERROR: must have option \'--all\' or non-empty test list', file=sys.stderr) 100 98 parser.print_help() 101 99 sys.exit(1) 102 100 103 tests = listTests() if options.all else options.tests 101 allTests = listTests() 104 102 105 sys.exit( run_tests(tests, options.generate_expected, options.dry_run) ) 103 if options.all or options.list : 104 tests = allTests 105 106 else : 107 tests = [] 108 for test in options.tests: 109 if allTests.contains( test ) : 110 tests.append(test) 111 else : 112 print('ERROR: No expected file for test %s, ignoring it' % test, file=sys.stderr) 113 114 if len(tests) == 0 : 115 print('ERROR: No valid test to run', file=sys.stderr) 116 sys.exit(1) 117 118 if options.list : 119 print("\n".join(tests)) 120 121 else : 122 sys.exit( run_tests(tests, options.regenerate_expected, options.dry_run) )
Note: See TracChangeset
for help on using the changeset viewer.