Bug 964379 - Add logging to figure out what's breaking xpcshell on comm-central on OSX 10.6.

This commit is contained in:
Ryan VanderMeulen 2014-02-02 22:30:43 -05:00
parent 68583ab308
commit 02c58b829d

View File

@ -796,7 +796,11 @@ class XPCShellTests(object):
self.buildTestPath()
self.alltests = mp.active_tests(**mozinfo.info)
try:
self.alltests = mp.active_tests(**mozinfo.info)
except TypeError:
sys.stderr.write("*** offending mozinfo.info: %s\n" % repr(mozinfo.info))
raise
if self.singleFile is None and self.totalChunks > 1:
self.chunkTests()