Home | History | Annotate | Download | only in test262

Lines Matching refs:testcase

36 from testrunner.objects import testcase
55 def CommonTestName(self, testcase):
56 return testcase.path.split(os.path.sep)[-1]
71 case = testcase.TestCase(self, testname)
75 def GetFlagsForTestCase(self, testcase, context):
76 return (testcase.flags + context.mode_flags + self.harness +
77 [os.path.join(self.testroot, testcase.path + ".js")])
79 def GetSourceForTest(self, testcase):
80 filename = os.path.join(self.testroot, testcase.path + ".js")
84 def IsNegativeTest(self, testcase):
85 return "@negative" in self.GetSourceForTest(testcase)