summaryrefslogtreecommitdiff
path: root/Source/cmCTest.h
diff options
context:
space:
mode:
authorZach Mullen <zach.mullen@kitware.com>2009-08-26 12:09:06 -0400
committerZach Mullen <zach.mullen@kitware.com>2009-08-26 12:09:06 -0400
commit8ffd8d0a03d68241ce4f5f8a9fd266bee1032e1d (patch)
tree744b5e713b143008ec4ddcd8670bd47082658c05 /Source/cmCTest.h
parent1171bcfc697f6196c8f31018153217e5de779e60 (diff)
downloadcmake-8ffd8d0a03d68241ce4f5f8a9fd266bee1032e1d.tar.gz
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCTest.h b/Source/cmCTest.h
index 2a0d4bfcc2..91a0fc66c5 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; }