| OLD | NEW |
| 1 # Copyright 2012 the V8 project authors. All rights reserved. | 1 # Copyright 2012 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 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 else: | 86 else: |
| 87 return testcase.path | 87 return testcase.path |
| 88 | 88 |
| 89 def ListTests(self, context): | 89 def ListTests(self, context): |
| 90 raise NotImplementedError | 90 raise NotImplementedError |
| 91 | 91 |
| 92 def VariantFlags(self, testcase, default_flags): | 92 def VariantFlags(self, testcase, default_flags): |
| 93 if testcase.outcomes and statusfile.OnlyStandardVariant(testcase.outcomes): | 93 if testcase.outcomes and statusfile.OnlyStandardVariant(testcase.outcomes): |
| 94 return [[]] | 94 return [[]] |
| 95 if testcase.outcomes and statusfile.OnlyFastVariants(testcase.outcomes): | 95 if testcase.outcomes and statusfile.OnlyFastVariants(testcase.outcomes): |
| 96 return filter(lambda flags: flags in FAST_VARIANT_FLAGS, default_flags) | 96 # FAST_VARIANTS implies no --always-opt. |
| 97 return [ filter(lambda flag: flag != "--always-opt", f) |
| 98 for f in filter(lambda flags: flags in FAST_VARIANT_FLAGS, |
| 99 default_flags) ] |
| 97 return default_flags | 100 return default_flags |
| 98 | 101 |
| 99 def DownloadData(self): | 102 def DownloadData(self): |
| 100 pass | 103 pass |
| 101 | 104 |
| 102 def ReadStatusFile(self, variables): | 105 def ReadStatusFile(self, variables): |
| 103 (self.rules, self.wildcards) = \ | 106 (self.rules, self.wildcards) = \ |
| 104 statusfile.ReadStatusFile(self.status_file(), variables) | 107 statusfile.ReadStatusFile(self.status_file(), variables) |
| 105 | 108 |
| 106 def ReadTestCases(self, context): | 109 def ReadTestCases(self, context): |
| (...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 264 return tests | 267 return tests |
| 265 | 268 |
| 266 def GetFlagsForTestCase(self, testcase, context): | 269 def GetFlagsForTestCase(self, testcase, context): |
| 267 return (testcase.flags + ["--gtest_filter=" + testcase.path] + | 270 return (testcase.flags + ["--gtest_filter=" + testcase.path] + |
| 268 ["--gtest_random_seed=%s" % context.random_seed] + | 271 ["--gtest_random_seed=%s" % context.random_seed] + |
| 269 ["--gtest_print_time=0"] + | 272 ["--gtest_print_time=0"] + |
| 270 context.mode_flags) | 273 context.mode_flags) |
| 271 | 274 |
| 272 def shell(self): | 275 def shell(self): |
| 273 return self.name | 276 return self.name |
| OLD | NEW |