- Timestamp:
- Nov 3, 2020, 5:29:45 PM (4 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- a3f5208a
- Parents:
- daefe93
- Location:
- tests
- Files:
-
- 7 added
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
tests/pybin/settings.py
rdaefe93 ra2f2fda 85 85 def filter(self, tests): 86 86 return [test for test in tests if not test.arch or self.target == test.arch] 87 return True if not arch else self.target == arch88 87 89 88 @staticmethod … … 101 100 def __init__(self, ast): 102 101 if ast == "new": 102 self.target = ast 103 103 self.string = "New AST" 104 104 self.flags = """AST_FLAGS=-XCFA,--new-ast""" 105 105 elif ast == "old": 106 self.target = ast 106 107 self.string = "Old AST" 107 108 self.flags = """AST_FLAGS=-XCFA,--old-ast""" 108 109 elif ast == None: 109 self.string = "Default AST (%s)" % ("new" if config.NEWAST else "old") 110 self.target = "new" if config.NEWAST else "old" 111 self.string = "Default AST (%s)" % self.target 110 112 self.flags = """AST_FLAGS=""" 111 113 else: 112 114 print("""ERROR: Invalid ast configuration, must be "old", "new" or left unspecified, was %s""" % (value), file=sys.stderr) 115 sys.exit(1) 116 117 def filter(self, tests): 118 119 return [test for test in tests if not test.astv or self.target == test.astv] 113 120 114 121 class Install: -
tests/pybin/test_run.py
rdaefe93 ra2f2fda 11 11 self.path = '' 12 12 self.arch = '' 13 self.astv = '' 13 14 14 15 def toString(self): 15 return "{:25s} ({:5s} {:s})".format( self.name, self.arch if self.archelse "Any", self.target() )16 return "{:25s} ({:5s} arch, {:s} ast: {:s})".format( self.name, self.arch if self.arch else "Any", self.astv if self.astv else "Any", self.target() ) 16 17 17 18 def prepare(self): … … 20 21 21 22 def expect(self): 22 return os.path.normpath( os.path.join(settings.SRCDIR , self.path, ".expect", "%s%s.txt" % (self.name,'' if not self.arch else ".%s" % self.arch)) ) 23 arch = '' if not self.arch else ".%s" % self.arch 24 astv = '' if not self.astv else ".nast" if self.astv == "new" else ".oast" 25 return os.path.normpath( os.path.join(settings.SRCDIR , self.path, ".expect", "%s%s%s.txt" % (self.name,astv,arch)) ) 23 26 24 27 def error_log(self): … … 45 48 46 49 @staticmethod 47 def new_target(target, arch ):50 def new_target(target, arch, astv): 48 51 test = Test() 49 52 test.name = os.path.basename(target) 50 53 test.path = os.path.relpath (os.path.dirname(target), settings.SRCDIR) 51 54 test.arch = arch.target if arch else '' 55 test.astv = astv.target if astv else '' 52 56 return test 53 57 -
tests/test.py
rdaefe93 ra2f2fda 24 24 25 25 def match_test(path): 26 match = re.search("^%s\/([\w\/\-_]*).expect\/([\w\-_]+)(\. [\w\-_]+)?\.txt$" % settings.SRCDIR, path)26 match = re.search("^%s\/([\w\/\-_]*).expect\/([\w\-_]+)(\.nast|\.oast)?(\.[\w\-_]+)?\.txt$" % settings.SRCDIR, path) 27 27 if match : 28 28 test = Test() 29 29 test.name = match.group(2) 30 30 test.path = match.group(1) 31 test.arch = match.group(3)[1:] if match.group(3) else None 31 test.arch = match.group(4)[1:] if match.group(4) else None 32 33 astv = match.group(3)[1:] if match.group(3) else None 34 if astv == 'oast': 35 test.astv = 'old' 36 elif astv == 'nast': 37 test.astv = 'new' 38 elif astv: 39 print('ERROR: "%s", expect file has astv but it is not "nast" or "oast"' % testname, file=sys.stderr) 40 sys.exit(1) 41 32 42 expected.append(test) 33 43 … … 66 76 if options.regenerate_expected : 67 77 for testname in options.tests : 68 testname = canonical_path( testname ) 78 testname = os.path.normpath( os.path.join(settings.SRCDIR, testname) ) 79 69 80 # first check if this is a valid name to regenerate 70 81 if Test.valid_name(testname): 71 82 # this is a valid name, let's check if it already exists 72 83 found = [test for test in all_tests if canonical_path( test.target() ) == testname] 84 setup = itertools.product(settings.all_arch if options.arch else [None], settings.all_ast if options.ast else [None]) 73 85 if not found: 74 # it's a new name, create it according to the name and specified architecture 75 if options.arch: 76 # user specified one or multiple architectures, assume the tests will have architecture specific results 77 tests.extend( [Test.new_target(testname, arch) for arch in settings.all_arch] ) 78 else: 79 # user didn't specify an architecture, just create a cross platform test 80 tests.append( Test.new_target( testname, None ) ) 86 # it's a new name, create it according to the name and specified architecture/ast version 87 tests.extend( [Test.new_target(testname, arch, ast) for arch, ast in setup] ) 81 88 elif len(found) == 1 and not found[0].arch: 82 89 # we found a single test, the user better be wanting to create a cross platform test 83 90 if options.arch: 84 91 print('ERROR: "%s", test has no specified architecture but --arch was specified, ignoring it' % testname, file=sys.stderr) 92 elif options.ast: 93 print('ERROR: "%s", test has no specified ast version but --ast was specified, ignoring it' % testname, file=sys.stderr) 85 94 else: 86 95 tests.append( found[0] ) 87 96 else: 88 97 # this test is already cross platform, just add a test for each platform the user asked 89 tests.extend( [Test.new_target(testname, arch ) for arch in settings.all_arch] )98 tests.extend( [Test.new_target(testname, arch, ast) for arch, ast in setup] ) 90 99 91 100 # print a warning if it users didn't ask for a specific architecture 92 101 if not options.arch: 93 102 print('WARNING: "%s", test has architecture specific expected files but --arch was not specified, regenerating only for current host' % testname, file=sys.stderr) 103 104 105 # print a warning if it users didn't ask for a specific ast version 106 if not options.ast: 107 print('WARNING: "%s", test has ast version specific expected files but --ast was not specified, regenerating only for current ast' % testname, file=sys.stderr) 94 108 95 109 else : … … 252 266 except KeyboardInterrupt: 253 267 return False, "" 254 except Exception as ex:255 print("Unexpected error in worker thread running {}: {}".format(t.target(), ex), file=sys.stderr)256 sys.stderr.flush()257 return False, ""268 # except Exception as ex: 269 # print("Unexpected error in worker thread running {}: {}".format(t.target(), ex), file=sys.stderr) 270 # sys.stderr.flush() 271 # return False, "" 258 272 259 273 … … 371 385 # filter out the tests for a different architecture 372 386 # tests are the same across debug/install 373 local_tests = settings.arch.filter( tests ) 387 local_tests = settings.ast.filter( tests ) 388 local_tests = settings.arch.filter( local_tests ) 374 389 options.jobs, forceJobs = job_count( options, local_tests ) 375 390 settings.update_make_cmd(forceJobs, options.jobs) … … 383 398 len(local_tests), 384 399 options.jobs, 400 settings.ast.string, 385 401 settings.arch.string, 386 settings.debug.string, 387 settings.ast.string 402 settings.debug.string 388 403 )) 404 if not local_tests : 405 print('WARNING: No tests for this configuration') 406 continue 389 407 390 408 # otherwise run all tests and make sure to return the correct error code
Note: See TracChangeset
for help on using the changeset viewer.