Index: chrome/test/test_launcher/out_of_proc_test_runner.cc |
diff --git a/chrome/test/test_launcher/out_of_proc_test_runner.cc b/chrome/test/test_launcher/out_of_proc_test_runner.cc |
index 28fd5dd9b88c00cfbc326d9c6ec59f4f72d62394..8f675b8dbf0c565bc9062029e95cc51f8ad5826a 100644 |
--- a/chrome/test/test_launcher/out_of_proc_test_runner.cc |
+++ b/chrome/test/test_launcher/out_of_proc_test_runner.cc |
@@ -66,13 +66,13 @@ class OutOfProcTestRunner : public tests::TestRunner { |
switches.erase(kGTestOutputFlag); |
for (CommandLine::SwitchMap::const_iterator iter = switches.begin(); |
iter != switches.end(); ++iter) { |
- new_cmd_line.AppendSwitchWithValue((*iter).first, (*iter).second); |
+ new_cmd_line.AppendSwitchNative((*iter).first, (*iter).second); |
} |
// Always enable disabled tests. This method is not called with disabled |
// tests unless this flag was specified to the browser test executable. |
new_cmd_line.AppendSwitch("gtest_also_run_disabled_tests"); |
- new_cmd_line.AppendSwitchWithValue("gtest_filter", test_name); |
+ new_cmd_line.AppendSwitchASCII("gtest_filter", test_name); |
new_cmd_line.AppendSwitch(kChildProcessFlag); |
// Do not let the child ignore failures. We need to propagate the |