Bug 1352599 - Post: Disable failing java.configure test. r=Aryx draft
authorNick Alexander <nalexander@mozilla.com>
Thu, 12 Oct 2017 13:40:29 -0700
changeset 679521 81eb52d4f610bb8db3fac7827f0959e5d6d669db
parent 679482 0111a527f2b3412f2bc62f7bad53c635a4ce7101
child 735628 b1353e9f4915cf7de01bc45c95b1ca527096243b
push id84253
push usernalexander@mozilla.com
push dateThu, 12 Oct 2017 20:43:03 +0000
reviewersAryx
bugs1352599
milestone58.0a1
Bug 1352599 - Post: Disable failing java.configure test. r=Aryx MozReview-Commit-ID: 9aUZW5euxsS
python/mozbuild/mozbuild/test/configure/test_checks_configure.py
--- a/python/mozbuild/mozbuild/test/configure/test_checks_configure.py
+++ b/python/mozbuild/mozbuild/test/configure/test_checks_configure.py
@@ -473,16 +473,17 @@ class TestChecksConfigure(unittest.TestC
         self.assertEqual(status, 1)
         self.assertEqual(config, {})
         self.assertEqual(out, textwrap.dedent('''\
             checking for a... 
             DEBUG: a: Trying known-a
             ERROR: Paths provided to find_program must be a list of strings, not %r
         ''' % mozpath.dirname(self.OTHER_A)))
 
+    @unittest.skip('Broken by Bug 1352599; re-enabling is tracked by Bug 1408159.')
     def test_java_tool_checks(self):
         includes = ('util.configure', 'checks.configure', 'java.configure')
 
         def mock_valid_javac(_, args):
             if len(args) == 1 and args[0] == '-version':
                 return 0, '1.8', ''
             self.fail("Unexpected arguments to mock_valid_javac: %s" % args)