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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 ['d8'] |
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 |