| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "base/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "base/file_path.h" | 6 #include "base/file_path.h" |
| 7 #include "base/path_service.h" | 7 #include "base/path_service.h" |
| 8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
| 9 #include "net/http/http_cache.h" | 9 #include "net/http/http_cache.h" |
| 10 #include "net/url_request/url_request_context.h" | 10 #include "net/url_request/url_request_context.h" |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 // can be printed upon termination. This is only enabled in debug builds, so | 25 // can be printed upon termination. This is only enabled in debug builds, so |
| 26 // it only makes sense to run this using a debug build. | 26 // it only makes sense to run this using a debug build. |
| 27 // | 27 // |
| 28 // It will load a URL, visit about:blank, and then perform garbage collection. | 28 // It will load a URL, visit about:blank, and then perform garbage collection. |
| 29 // The number of remaining (potentially leaked) nodes will be printed on exit. | 29 // The number of remaining (potentially leaked) nodes will be printed on exit. |
| 30 class NodeLeakTest : public TestShellTest { | 30 class NodeLeakTest : public TestShellTest { |
| 31 public: | 31 public: |
| 32 virtual void SetUp() { | 32 virtual void SetUp() { |
| 33 const CommandLine& parsed_command_line = *CommandLine::ForCurrentProcess(); | 33 const CommandLine& parsed_command_line = *CommandLine::ForCurrentProcess(); |
| 34 | 34 |
| 35 std::wstring js_flags = | |
| 36 parsed_command_line.GetSwitchValue(test_shell::kJavaScriptFlags); | |
| 37 js_flags += L" --expose-gc"; | |
| 38 webkit_glue::SetJavaScriptFlags(js_flags); | |
| 39 | |
| 40 FilePath cache_path = FilePath::FromWStringHack( | 35 FilePath cache_path = FilePath::FromWStringHack( |
| 41 parsed_command_line.GetSwitchValue(test_shell::kCacheDir)); | 36 parsed_command_line.GetSwitchValue(test_shell::kCacheDir)); |
| 42 if (cache_path.empty()) { | 37 if (cache_path.empty()) { |
| 43 PathService::Get(base::DIR_EXE, &cache_path); | 38 PathService::Get(base::DIR_EXE, &cache_path); |
| 44 cache_path = cache_path.AppendASCII("cache"); | 39 cache_path = cache_path.AppendASCII("cache"); |
| 45 } | 40 } |
| 46 | 41 |
| 47 if (parsed_command_line.HasSwitch(test_shell::kTestShellTimeOut)) { | 42 if (parsed_command_line.HasSwitch(test_shell::kTestShellTimeOut)) { |
| 48 const std::wstring timeout_str = parsed_command_line.GetSwitchValue( | 43 const std::wstring timeout_str = parsed_command_line.GetSwitchValue( |
| 49 test_shell::kTestShellTimeOut); | 44 test_shell::kTestShellTimeOut); |
| (...skipping 29 matching lines...) Expand all Loading... |
| 79 }; | 74 }; |
| 80 | 75 |
| 81 TEST_F(NodeLeakTest, TestURL) { | 76 TEST_F(NodeLeakTest, TestURL) { |
| 82 const CommandLine& parsed_command_line = *CommandLine::ForCurrentProcess(); | 77 const CommandLine& parsed_command_line = *CommandLine::ForCurrentProcess(); |
| 83 if (parsed_command_line.HasSwitch(kTestUrlSwitch)) { | 78 if (parsed_command_line.HasSwitch(kTestUrlSwitch)) { |
| 84 NavigateToURL(parsed_command_line.GetSwitchValue(kTestUrlSwitch).c_str()); | 79 NavigateToURL(parsed_command_line.GetSwitchValue(kTestUrlSwitch).c_str()); |
| 85 } | 80 } |
| 86 } | 81 } |
| 87 | 82 |
| 88 } // namespace | 83 } // namespace |
| OLD | NEW |