BUG: Cannot add extra escapes for backslashes because it makes the behavior inconsistent with previous versions of cmake.

This commit is contained in:
Brad King 2003-11-04 08:50:43 -05:00
parent def3fd0436
commit 0169ccf157

View File

@ -72,8 +72,10 @@ void cmAddTestCommand::FinalPass()
fout << " \""; fout << " \"";
for(std::string::iterator c = it->begin(); c != it->end(); ++c) for(std::string::iterator c = it->begin(); c != it->end(); ++c)
{ {
// Escape quotes and backslashes within arguments. // Escape quotes within arguments. We should escape
if((*c == '"') || (*c == '\\')) // backslashes too but we cannot because it makes the result
// inconsistent with previous behavior of this command.
if((*c == '"'))
{ {
fout << '\\'; fout << '\\';
} }