Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(13)

Side by Side Diff: base/command_line_unittest.cc

Issue 4928002: Changing the installer switches from wchar_t[] to char[].... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/command_line.cc ('k') | chrome/browser/browser_main_win.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 <string> 5 #include <string>
6 #include <vector> 6 #include <vector>
7 7
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/file_path.h" 10 #include "base/file_path.h"
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 #if defined(OS_WIN) 147 #if defined(OS_WIN)
148 EXPECT_EQ(L"\"Program\" " 148 EXPECT_EQ(L"\"Program\" "
149 L"--switch1 " 149 L"--switch1 "
150 L"--switch2=value " 150 L"--switch2=value "
151 L"--switch3=\"a value with spaces\" " 151 L"--switch3=\"a value with spaces\" "
152 L"--switch4=\"\\\"a value with quotes\\\"\" " 152 L"--switch4=\"\\\"a value with quotes\\\"\" "
153 L"--quotes=\"" TRICKY_QUOTED L"\"", 153 L"--quotes=\"" TRICKY_QUOTED L"\"",
154 cl.command_line_string()); 154 cl.command_line_string());
155 #endif 155 #endif
156 } 156 }
157
158 // Tests that when AppendArguments is called that both the program and
159 // command line strings are equal.
evanm 2010/11/14 19:15:39 Maybe change the end of this sentece to "...is cal
tommi (sloooow) - chröme 2010/11/14 21:28:07 Changed the description after incorporating Robert
160 TEST(CommandLineTest, AppendArguments) {
161 CommandLine cl1(FilePath(FILE_PATH_LITERAL("Program")));
162 cl1.AppendSwitch("switch1");
163 cl1.AppendSwitchASCII("switch2", "foo");
164
165 CommandLine cl2(CommandLine::NO_PROGRAM);
166 cl2.AppendArguments(cl1, true);
evanm 2010/11/14 19:15:39 Shouldn't this hit the DCHECK(), since it's saying
evanm 2010/11/14 19:16:18 Never mind, ready it backwards. :(
167 EXPECT_EQ(cl1.command_line_string(), cl2.command_line_string());
168 EXPECT_EQ(cl1.GetProgram(), cl2.GetProgram());
169 }
170
OLDNEW
« no previous file with comments | « base/command_line.cc ('k') | chrome/browser/browser_main_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698