Lines Matching full:program
26 L"program --foo= -bAr /Spaetzel=pierogi /Baz flim "
35 const char* argv[] = {"program", "--foo=", "-bar",
46 EXPECT_FALSE(cl.HasSwitch("program"));
53 EXPECT_EQ(FilePath(FILE_PATH_LITERAL("program")).value(),
129 CommandLine cl(FilePath(FILE_PATH_LITERAL("Program")));
148 EXPECT_EQ(L"\"Program\" "
158 // Tests that when AppendArguments is called that the program is set correctly
162 CommandLine cl1(FilePath(FILE_PATH_LITERAL("Program")));
183 // Make sure that the program part of a command line is always quoted.
187 const FilePath kProgram(L"Program");
193 // Verify that in the command line string, the program part is always quoted.
195 CommandLine::StringType program(cl.GetProgram().value());
197 EXPECT_EQ(program, cmd.substr(1, program.length()));
198 EXPECT_EQ('"', cmd[program.length() + 1]);