diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-26 08:23:16 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-26 08:23:16 +0000 |
commit | 62c5b98d190880230f10fbf39cc008e0b2cb74c9 (patch) | |
tree | b7681b1a0cc156b367148f511d2c02be4c696a71 /build | |
parent | dc27f2e81cb6fa305b8e5a64bd198273a7bd76bc (diff) | |
download | chromium_src-62c5b98d190880230f10fbf39cc008e0b2cb74c9.zip chromium_src-62c5b98d190880230f10fbf39cc008e0b2cb74c9.tar.gz chromium_src-62c5b98d190880230f10fbf39cc008e0b2cb74c9.tar.bz2 |
Use the correct NRWT flag for specifying additional expectations
BUG=none
R=ilevy@chromium.org
NOTRY=true
Review URL: https://chromiumcodereview.appspot.com/12035100
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@179057 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rwxr-xr-x | build/android/buildbot/bb_device_steps.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/android/buildbot/bb_device_steps.py b/build/android/buildbot/bb_device_steps.py index 9239ef5..98cd640 100755 --- a/build/android/buildbot/bb_device_steps.py +++ b/build/android/buildbot/bb_device_steps.py @@ -209,8 +209,8 @@ def RunWebkitLayoutTests(options): options.factory_properties.get(flag)]) for f in options.factory_properties.get('additional_expectations_files', []): - cmd_args.extend(['--additional-expectations-file', - os.path.join(CHROME_SRC, *f)]) + cmd_args.extend( + ['--additional-expectations=%s' % os.path.join(CHROME_SRC, *f)]) RunCmd(['webkit/tools/layout_tests/run_webkit_tests.py'] + cmd_args) |