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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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): |
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 test_suite = sputnik.TestSuite(testroot) | 91 # Do not run strict mode tests yet. TODO(mmaly) |
| 92 test_suite = sputnik.TestSuite(testroot, False) |
92 test_suite.Validate() | 93 test_suite.Validate() |
93 tests = test_suite.EnumerateTests([]) | 94 tests = test_suite.EnumerateTests([]) |
94 result = [] | 95 result = [] |
95 for test in tests: | 96 for test in tests: |
96 full_path = current_path + [test.GetPath()[-1]] | 97 full_path = current_path + [test.GetPath()[-1]] |
97 if self.Contains(path, full_path): | 98 if self.Contains(path, full_path): |
98 case = SputnikTestCase(test, full_path, self.context, mode) | 99 case = SputnikTestCase(test, full_path, self.context, mode) |
99 result.append(case) | 100 result.append(case) |
100 return result | 101 return result |
101 | 102 |
102 def GetBuildRequirements(self): | 103 def GetBuildRequirements(self): |
103 return ['sample', 'sample=shell'] | 104 return ['sample', 'sample=shell'] |
104 | 105 |
105 def GetTestStatus(self, sections, defs): | 106 def GetTestStatus(self, sections, defs): |
106 status_file = join(self.root, 'sputnik.status') | 107 status_file = join(self.root, 'sputnik.status') |
107 if exists(status_file): | 108 if exists(status_file): |
108 test.ReadConfigurationInto(status_file, sections, defs) | 109 test.ReadConfigurationInto(status_file, sections, defs) |
109 | 110 |
110 | 111 |
111 def GetConfiguration(context, root): | 112 def GetConfiguration(context, root): |
112 return SputnikTestConfiguration(context, root) | 113 return SputnikTestConfiguration(context, root) |
OLD | NEW |