diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2009-08-30 14:57:30 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2009-08-30 14:57:30 (GMT) |
commit | 387ba0c6469c6959bdc61d7849454f07e16ebde4 (patch) | |
tree | 8457fcd17c29cd8bda42acacd4d1af302ddbc52c /Source/CTest | |
parent | 3941546ba3a2ea6538d70b2162d33d7605abed79 (diff) | |
download | CMake-387ba0c6469c6959bdc61d7849454f07e16ebde4.zip CMake-387ba0c6469c6959bdc61d7849454f07e16ebde4.tar.gz CMake-387ba0c6469c6959bdc61d7849454f07e16ebde4.tar.bz2 |
Fixed line length issue
Diffstat (limited to 'Source/CTest')
-rw-r--r-- | Source/CTest/cmCTestRunTest.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestRunTest.cxx b/Source/CTest/cmCTestRunTest.cxx index bbc23b2..a9bbab7 100644 --- a/Source/CTest/cmCTestRunTest.cxx +++ b/Source/CTest/cmCTestRunTest.cxx @@ -391,7 +391,8 @@ bool cmCTestRunTest::CreateProcess(double testTimeOut, { this->TestProcess = new cmProcess; this->TestProcess->SetId(this->Index); - this->TestProcess->SetWorkingDirectory(this->TestProperties->Directory.c_str()); + this->TestProcess->SetWorkingDirectory( + this->TestProperties->Directory.c_str()); this->TestProcess->SetCommand(this->ActualCommand.c_str()); this->TestProcess->SetCommandArguments(this->Arguments); |