From 6b10e404656c594d4e530ca0965daeee9dcd685c Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Sat, 3 Aug 2013 08:54:52 -0700 Subject: [PATCH] Bug 901136 - Fix the default search path for mozinfo.json [r=jmaher] --- testing/mochitest/mochitest_options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testing/mochitest/mochitest_options.py b/testing/mochitest/mochitest_options.py index b7a09ef142e..75b870a9555 100644 --- a/testing/mochitest/mochitest_options.py +++ b/testing/mochitest/mochitest_options.py @@ -468,7 +468,7 @@ class MochitestOptions(optparse.OptionParser): if not options.mozInfo: if build_obj: - options.mozInfo = os.path.join(build_obj.get_binary_path(), 'mozinfo.json') + options.mozInfo = os.path.join(build_obj.topobjdir, 'mozinfo.json') else: options.mozInfo = os.path.abspath('mozinfo.json')