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

Unified Diff: SConstruct

Issue 8439032: Add option to command tester for running a test multiple times. Use that (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client/
Patch Set: xxx Created 9 years, 1 month 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
« no previous file with comments | « no previous file | tests/browser_startup_time/nacl.scons » ('j') | tests/browser_startup_time/nacl.scons » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: SConstruct
===================================================================
--- SConstruct (revision 7086)
+++ SConstruct (working copy)
@@ -1542,7 +1542,7 @@
env.MakeVerboseExtraOptions(target, log_verbosity, extra)
# Heuristic for when to capture output...
capture_output = (extra.pop('capture_output', False)
- or 'process_output' in extra)
+ or 'process_output_single' in extra)
node = env.CommandTest(target,
command,
# Set to 'huge' so that the browser tester's timeout
@@ -1814,7 +1814,7 @@
def ShouldUseVerboseOptions(extra):
""" Heuristic for setting up Verbose NACLLOG options. """
- return ('process_output' in extra or
+ return ('process_output_single' in extra or
'log_golden' in extra)
# ----------------------------------------------------------
@@ -1894,7 +1894,8 @@
'stdout_golden', 'stderr_golden', 'log_golden',
'filter_regex', 'filter_inverse', 'filter_group_only',
'osenv', 'arch', 'subarch', 'exit_status', 'track_cmdtime',
- 'process_output', 'using_nacl_signal_handler']
+ 'num_runs', 'process_output_single',
+ 'process_output_combined', 'using_nacl_signal_handler']
TEST_TIME_THRESHOLD = {
'small': 2,
« no previous file with comments | « no previous file | tests/browser_startup_time/nacl.scons » ('j') | tests/browser_startup_time/nacl.scons » ('J')

Powered by Google App Engine
This is Rietveld 408576698