diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2009-08-26 16:09:06 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2009-08-26 16:09:06 (GMT) |
commit | 8ffd8d0a03d68241ce4f5f8a9fd266bee1032e1d (patch) | |
tree | 744b5e713b143008ec4ddcd8670bd47082658c05 /Source/cmCTest.h | |
parent | 1171bcfc697f6196c8f31018153217e5de779e60 (diff) | |
download | CMake-8ffd8d0a03d68241ce4f5f8a9fd266bee1032e1d.zip CMake-8ffd8d0a03d68241ce4f5f8a9fd266bee1032e1d.tar.gz CMake-8ffd8d0a03d68241ce4f5f8a9fd266bee1032e1d.tar.bz2 |
ENH: refactored ctest. All testing is now parallel. If no -j option is specified, defaults to a MP level of 1 (non parallel)
Diffstat (limited to 'Source/cmCTest.h')
-rw-r--r-- | Source/cmCTest.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h index 2a0d4bf..91a0fc6 100644 --- a/Source/cmCTest.h +++ b/Source/cmCTest.h @@ -136,7 +136,7 @@ public: void SetTimeOut(double t) { this->TimeOut = t; } // how many test to run at the same time int GetParallelLevel() { return this->ParallelLevel; } - void SetParallelLevel(int t) { this->ParallelLevel = t; } + void SetParallelLevel(int); bool GetParallelSubprocess() { return this->ParallelSubprocess; } void SetParallelSubprocess() { this->ParallelSubprocess = true; } |