Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(485)

Unified Diff: scripts/master/factory/chromium_commands.py

Issue 12927002: use additional_expectations as a command parameter (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: scripts/master/factory/chromium_commands.py
diff --git a/scripts/master/factory/chromium_commands.py b/scripts/master/factory/chromium_commands.py
index 5fcdacb883b1b9b0433b61c86053d39a0f642067..29e133f7b2ba8bae9adb106a6ea44bd4fcdea9a8 100644
--- a/scripts/master/factory/chromium_commands.py
+++ b/scripts/master/factory/chromium_commands.py
@@ -1069,8 +1069,8 @@ class ChromiumCommands(commands.FactoryCommands):
'--build-number', WithProperties('%(buildnumber)s'),
'--builder-name', WithProperties(builder_name)]
- for comps in factory_properties.get('additional_expectations_files', []):
- cmd_args.append('--additional-expectations-file')
+ for comps in factory_properties.get('additional_expectations', []):
+ cmd_args.append('--additional-expectations')
cmd_args.append(self.PathJoin('src', *comps))
if layout_part:

Powered by Google App Engine
This is Rietveld 408576698