Bug 1337667 - Un-skip xpcshell selftests for stylo now that they're passing. r=jryans

MozReview-Commit-ID: JwvIhSkgNa4

--HG--
extra : rebase_source : cb19f6ae5bb4bb16b622e1f02e2efc22ea1686d4
This commit is contained in:
Chris Manchester 2017-05-17 12:58:49 -07:00
parent be91997096
commit dcb8101430

View File

@ -566,8 +566,6 @@ tail =
self.assertTrue(any(re.search(line_pat, line) for line in log_lines),
"No line resembling a stack frame was found in\n%s" % pprint.pformat(log_lines))
@unittest.skipIf(mozinfo.info.get('stylo'),
'failing on stylo for some reason') # bug 1337667
def testChildPass(self):
"""
Check that a simple test running in a child process passes.
@ -586,9 +584,6 @@ tail =
self.assertInLog("CHILD-TEST-COMPLETED")
self.assertNotInLog(TEST_FAIL_STRING)
@unittest.skipIf(mozinfo.info.get('stylo'),
'failing on stylo for some reason') # bug 1337667
def testChildFail(self):
"""
Check that a simple failing test running in a child process fails.
@ -607,8 +602,6 @@ tail =
self.assertInLog("CHILD-TEST-COMPLETED")
self.assertNotInLog(TEST_PASS_STRING)
@unittest.skipIf(mozinfo.info.get('stylo'),
'failing on stylo for some reason') # bug 1337667
def testChildHang(self):
"""
Check that incomplete output from a child process results in a
@ -628,8 +621,6 @@ tail =
self.assertNotInLog("CHILD-TEST-COMPLETED")
self.assertNotInLog(TEST_PASS_STRING)
@unittest.skipIf(mozinfo.info.get('stylo'),
'failing on stylo for some reason') # bug 1337667
def testChild(self):
"""
Checks that calling do_load_child_test_harness without run_test_in_child
@ -1325,8 +1316,6 @@ add_test({
self.assertInLog(TEST_PASS_STRING)
self.assertNotInLog(TEST_FAIL_STRING)
@unittest.skipIf(mozinfo.info.get('stylo'),
'failing on stylo for some reason') # bug 1337667
def testChildMozinfo(self):
"""
Check that mozinfo.json is loaded in child process