Fix crash on Windows. Remove trailing white space from regex. These changes should correct all failures of the new FailedSubmit tests.

This commit is contained in:
David Cole 2009-10-15 07:38:51 -04:00
parent b5f63c6b7d
commit 886ae02356
2 changed files with 2 additions and 2 deletions

View File

@ -2369,7 +2369,7 @@ void cmCTest::EmptyCTestConfiguration()
void cmCTest::SetCTestConfiguration(const char *name, const char* value) void cmCTest::SetCTestConfiguration(const char *name, const char* value)
{ {
cmCTestLog(this, HANDLER_VERBOSE_OUTPUT, "SetCTestConfiguration:" cmCTestLog(this, HANDLER_VERBOSE_OUTPUT, "SetCTestConfiguration:"
<< name << ":" << value << "\n"); << name << ":" << (value ? value : "(null)") << "\n");
if ( !name ) if ( !name )
{ {