summaryrefslogtreecommitdiffstats
path: root/webkit/tools/test_shell/mac/main.mm
diff options
context:
space:
mode:
Diffstat (limited to 'webkit/tools/test_shell/mac/main.mm')
-rw-r--r--webkit/tools/test_shell/mac/main.mm5
1 files changed, 2 insertions, 3 deletions
diff --git a/webkit/tools/test_shell/mac/main.mm b/webkit/tools/test_shell/mac/main.mm
index 2dd87b9..0bb6c70 100644
--- a/webkit/tools/test_shell/mac/main.mm
+++ b/webkit/tools/test_shell/mac/main.mm
@@ -138,10 +138,9 @@ int main(const int argc, const char *argv[]) {
parsed_command_line.HasSwitch(test_shell::kLayoutTests);
bool layout_test_mode =
parsed_command_line.HasSwitch(test_shell::kLayoutTests);
- bool interactive = !layout_test_mode;
TestShell::InitLogging(suppress_error_dialogs, layout_test_mode, false);
- TestShell::InitializeTestShell(interactive);
+ TestShell::InitializeTestShell(layout_test_mode);
bool no_tree = parsed_command_line.HasSwitch(test_shell::kNoTree);
@@ -221,7 +220,7 @@ int main(const int argc, const char *argv[]) {
std::wstring uri;
// Default to a homepage if we're interactive
- if (interactive) {
+ if (!layout_test_mode) {
NSString *resourcePath = [[NSBundle mainBundle] resourcePath];
NSString *testShellPath =
[resourcePath stringByAppendingPathComponent:@"test_shell/index.html"];