Bug 1338608 - Use mozunit in check_mkdir.py; r?chmanchester draft
authorMike Shal <mshal@mozilla.com>
Thu, 02 Feb 2017 18:04:23 -0500
changeset 485386 570209a7e4e9a39b938e0004fdb1b68a6c429a3b
parent 485385 13b5be9a8fcc1fa79be1f1febeae7a4ea06d28cc
child 546001 55e18e40aff4ba02f615d5dcb9fd646f53b28f1f
push id45714
push userbmo:mshal@mozilla.com
push dateThu, 16 Feb 2017 16:25:55 +0000
reviewerschmanchester
bugs1338608
milestone54.0a1
Bug 1338608 - Use mozunit in check_mkdir.py; r?chmanchester This makes the check_mkdir.py match the TEST-PASS output of other tests in the suite. MozReview-Commit-ID: FR3m09wRXg0
config/tests/makefiles/autodeps/check_mkdir.py
--- a/config/tests/makefiles/autodeps/check_mkdir.py
+++ b/config/tests/makefiles/autodeps/check_mkdir.py
@@ -9,16 +9,17 @@ import os
 import sys
 import tempfile
 
 from subprocess import call
 from shutil     import rmtree
 
 import logging
 import unittest
+import mozunit
 
 
 def banner():
     """
     Display interpreter and system info for the test env
     """
     print '*' * 75
     cmd = os.path.basename(__file__)
@@ -261,9 +262,9 @@ if __name__ == '__main__':
     myopts(opts)
 
     if opts:
         if hasattr(opts, 'unittest_args'):
             sys.argv[1:] = opts.unittest_args
         else:
             sys.argv[1:] = []
 
-    unittest.main()
+    mozunit.main()