Bug 1202716 - pass --utility-path to b2g mochitests; r=ahal

This commit is contained in:
Nathan Froyd 2015-09-08 18:13:02 -04:00
parent eeaa15095f
commit 408a08ba14
2 changed files with 3 additions and 0 deletions

View File

@ -107,6 +107,7 @@ config = {
"--logdir=%(logcat_dir)s",
"--remote-webserver=%(remote_webserver)s",
"--xre-path=%(xre_path)s",
"--utility-path=%(utility_path)s",
"--symbols-path=%(symbols_path)s",
"--busybox=%(busybox)s",
"--total-chunks=%(total_chunks)s",
@ -129,6 +130,7 @@ config = {
"--logdir=%(logcat_dir)s",
"--remote-webserver=%(remote_webserver)s",
"--xre-path=%(xre_path)s",
"--utility-path=%(utility_path)s",
"--symbols-path=%(symbols_path)s",
"--busybox=%(busybox)s",
"--total-chunks=%(total_chunks)s",

View File

@ -261,6 +261,7 @@ class B2GEmulatorTest(TestingMixin, VCSMixin, BaseScript, BlobUploadMixin):
'modules_dir': dirs['abs_modules_dir'],
'remote_webserver': self.config['remote_webserver'],
'xre_path': os.path.join(dirs['abs_xre_dir'], 'bin'),
'utility_path': os.path.join(dirs['abs_test_install_dir'], 'bin'),
'symbols_path': self.symbols_path,
'busybox': self.busybox_path,
'total_chunks': self.config.get('total_chunks'),