Title: [137219] trunk/Tools
Revision
137219
Author
dpra...@chromium.org
Date
2012-12-10 15:56:02 -0800 (Mon, 10 Dec 2012)

Log Message

old-run-webkit-tests: support --no-show-results for compatibility w/ NRWT
https://bugs.webkit.org/show_bug.cgi?id=104601

Reviewed by Eric Siedel.

This flag is being added so we can move all of the calling scripts
over to using --no-show-results instead of --no-launch-safari.

* Scripts/old-run-webkit-tests:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (137218 => 137219)


--- trunk/Tools/ChangeLog	2012-12-10 23:55:07 UTC (rev 137218)
+++ trunk/Tools/ChangeLog	2012-12-10 23:56:02 UTC (rev 137219)
@@ -1,5 +1,17 @@
 2012-12-10  Dirk Pranke  <dpra...@chromium.org>
 
+        old-run-webkit-tests: support --no-show-results for compatibility w/ NRWT
+        https://bugs.webkit.org/show_bug.cgi?id=104601
+
+        Reviewed by Eric Siedel.
+
+        This flag is being added so we can move all of the calling scripts
+        over to using --no-show-results instead of --no-launch-safari.
+
+        * Scripts/old-run-webkit-tests:
+
+2012-12-10  Dirk Pranke  <dpra...@chromium.org>
+
         nrwt: use the default logic for skipping platform-specific tests for chromium
         https://bugs.webkit.org/show_bug.cgi?id=104403
 

Modified: trunk/Tools/Scripts/old-run-webkit-tests (137218 => 137219)


--- trunk/Tools/Scripts/old-run-webkit-tests	2012-12-10 23:55:07 UTC (rev 137218)
+++ trunk/Tools/Scripts/old-run-webkit-tests	2012-12-10 23:56:02 UTC (rev 137219)
@@ -293,6 +293,7 @@
   -i|--ignore-tests               Comma-separated list of directories or tests to ignore
   --iterations n                  Number of times to run the set of tests (e.g. ABCABCABC)
   --[no-]launch-safari            Launch (or do not launch) Safari to display test results (default: $launchSafariDefault)
+  --[no-]show-results             Same as --[no-]launch-safari
   -l|--leaks                      Enable leaks checking
   --[no-]new-test-results         Generate results for new tests
   --nthly n                       Restart DumpRenderTree every n tests (default: $testsPerDumpTool)
@@ -346,6 +347,7 @@
     'merge-leak-depth|m:5' => \$mergeDepth,
     'new-test-results!' => \$generateNewResults,
     'no-build' => \$noBuildDumpTool,
+    'no-show-results' => sub  { $launchSafari = 0; },
     'nthly=i' => \$testsPerDumpTool,
     'pixel-tests|p' => \$pixelTests,
     'platform=s' => \$platform,
@@ -358,6 +360,7 @@
     'reverse' => \$reverseTests,
     'root=s' => \$root,
     'sample-on-timeout!' => \$runSample,
+    'show-results' => sub  { $launchSafari = 1; },
     'singly|1' => sub { $testsPerDumpTool = 1; },
     'skipped=s' => \&validateSkippedArg,
     'slowest' => \$report10Slowest,
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to