diff options
author | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-04 16:54:01 +0000 |
---|---|---|
committer | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-04 16:54:01 +0000 |
commit | bbe0af065171c8c3c226ab45087822d37218fb77 (patch) | |
tree | 7094fce066b9c4d1e6eb4822a06884dbb45be67d /webkit/tools/test_shell/test_shell_switches.cc | |
parent | be8c5ad496da6dabb5d3689b0613348fffbed4c9 (diff) | |
download | chromium_src-bbe0af065171c8c3c226ab45087822d37218fb77.zip chromium_src-bbe0af065171c8c3c226ab45087822d37218fb77.tar.gz chromium_src-bbe0af065171c8c3c226ab45087822d37218fb77.tar.bz2 |
Unify on "layout test mode" vs "interactive" and "non-interactive". We had a layout test mode flag in some places, and an interactive flag in others. It was especially confusing since interactive = !layout_test_mode.
This should make it much easier to grep for difference between layout test mode and normal "interactive" mode.
Review URL: http://codereview.chromium.org/12940
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6357 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/tools/test_shell/test_shell_switches.cc')
-rw-r--r-- | webkit/tools/test_shell/test_shell_switches.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webkit/tools/test_shell/test_shell_switches.cc b/webkit/tools/test_shell/test_shell_switches.cc index 26b53e0..214dd96 100644 --- a/webkit/tools/test_shell/test_shell_switches.cc +++ b/webkit/tools/test_shell/test_shell_switches.cc @@ -18,7 +18,7 @@ const wchar_t kCrashDumps[] = L"crash-dumps"; // Enable crash dumps const wchar_t kNoTree[] = L"notree"; // Don't dump the render tree. const wchar_t kDumpPixels[] = L"pixel-tests"; // Enable pixel tests. // Optional command line switch that specifies timeout time for page load when -// running non-interactive file tests, in ms. +// running file tests in layout test mode, in ms. const wchar_t kTestShellTimeOut[] = L"time-out-ms"; const wchar_t kStartupDialog[] = L"testshell-startup-dialog"; |