| OLD | NEW |
| 1 # Copyright 2009 the V8 project authors. All rights reserved. | 1 # Copyright 2009 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 2 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 3 # modification, are permitted provided that the following conditions are |
| 4 # met: | 4 # met: |
| 5 # | 5 # |
| 6 # * Redistributions of source code must retain the above copyright | 6 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 7 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 8 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 9 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 10 # disclaimer in the documentation and/or other materials provided |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 def GetSource(self): | 74 def GetSource(self): |
| 75 if not self.source: | 75 if not self.source: |
| 76 self.source = self.case.GetSource() | 76 self.source = self.case.GetSource() |
| 77 return self.source | 77 return self.source |
| 78 | 78 |
| 79 class SputnikTestConfiguration(test.TestConfiguration): | 79 class SputnikTestConfiguration(test.TestConfiguration): |
| 80 | 80 |
| 81 def __init__(self, context, root): | 81 def __init__(self, context, root): |
| 82 super(SputnikTestConfiguration, self).__init__(context, root) | 82 super(SputnikTestConfiguration, self).__init__(context, root) |
| 83 | 83 |
| 84 def ListTests(self, current_path, path, mode): | 84 def ListTests(self, current_path, path, mode, variant_flags): |
| 85 # Import the sputnik test runner script as a module | 85 # Import the sputnik test runner script as a module |
| 86 testroot = join(self.root, 'sputniktests') | 86 testroot = join(self.root, 'sputniktests') |
| 87 modroot = join(testroot, 'tools') | 87 modroot = join(testroot, 'tools') |
| 88 sys.path.append(modroot) | 88 sys.path.append(modroot) |
| 89 import sputnik | 89 import sputnik |
| 90 globals()['sputnik'] = sputnik | 90 globals()['sputnik'] = sputnik |
| 91 # Do not run strict mode tests yet. TODO(mmaly) | 91 # Do not run strict mode tests yet. TODO(mmaly) |
| 92 test_suite = sputnik.TestSuite(testroot, False) | 92 test_suite = sputnik.TestSuite(testroot, False) |
| 93 test_suite.Validate() | 93 test_suite.Validate() |
| 94 tests = test_suite.EnumerateTests([]) | 94 tests = test_suite.EnumerateTests([]) |
| 95 result = [] | 95 result = [] |
| 96 for test in tests: | 96 for test in tests: |
| 97 full_path = current_path + [test.GetPath()[-1]] | 97 full_path = current_path + [test.GetPath()[-1]] |
| 98 if self.Contains(path, full_path): | 98 if self.Contains(path, full_path): |
| 99 case = SputnikTestCase(test, full_path, self.context, mode) | 99 case = SputnikTestCase(test, full_path, self.context, mode) |
| 100 result.append(case) | 100 result.append(case) |
| 101 return result | 101 return result |
| 102 | 102 |
| 103 def GetBuildRequirements(self): | 103 def GetBuildRequirements(self): |
| 104 return ['sample', 'sample=shell'] | 104 return ['sample', 'sample=shell'] |
| 105 | 105 |
| 106 def GetTestStatus(self, sections, defs): | 106 def GetTestStatus(self, sections, defs): |
| 107 status_file = join(self.root, 'sputnik.status') | 107 status_file = join(self.root, 'sputnik.status') |
| 108 if exists(status_file): | 108 if exists(status_file): |
| 109 test.ReadConfigurationInto(status_file, sections, defs) | 109 test.ReadConfigurationInto(status_file, sections, defs) |
| 110 | 110 |
| 111 | 111 |
| 112 def GetConfiguration(context, root): | 112 def GetConfiguration(context, root): |
| 113 return SputnikTestConfiguration(context, root) | 113 return SputnikTestConfiguration(context, root) |
| OLD | NEW |