Home | History | Annotate | Download | only in benchmarks

Lines Matching full:testcase

34 from testrunner.objects import testcase
41 def FilterVariantsByTest(self, testcase):
42 if testcase.outcomes and statusfile.OnlyStandardVariant(
43 testcase.outcomes):
47 def GetFlagSets(self, testcase, variant):
117 tests.append(testcase.TestCase(self, test))
120 def GetFlagsForTestCase(self, testcase, context):
123 if testcase.path.startswith("kraken"):
124 result.append(os.path.join(self.testroot, "%s-data.js" % testcase.path))
125 result.append(os.path.join(self.testroot, "%s.js" % testcase.path))
126 elif testcase.path.startswith("octane"):
128 result.append(os.path.join(self.testroot, "%s.js" % testcase.path))
129 if testcase.path.startswith("octane/gbemu"):
131 elif testcase.path.startswith("octane/typescript"):
135 elif testcase.path.startswith("octane/zlib"):
138 elif testcase.path.startswith("sunspider"):
139 result.append(os.path.join(self.testroot, "%s.js" % testcase.path))
140 return testcase.flags + result
142 def GetSourceForTest(self, testcase):
143 filename = os.path.join(self.testroot, testcase.path + ".js")