diff options
author | Zach Mullen <zach.mullen@kitware.com> | 2009-09-08 17:39:13 (GMT) |
---|---|---|
committer | Zach Mullen <zach.mullen@kitware.com> | 2009-09-08 17:39:13 (GMT) |
commit | 39e5f9d963c6580f95316f9b5f76a3a8f660d6cc (patch) | |
tree | f02f846dbe3b0168cce8f3b15c3f8949c80e6335 /Source/CTest/cmCTestTestHandler.h | |
parent | a02ef564018be7e383992d52399279ea7cf48c91 (diff) | |
download | CMake-39e5f9d963c6580f95316f9b5f76a3a8f660d6cc.zip CMake-39e5f9d963c6580f95316f9b5f76a3a8f660d6cc.tar.gz CMake-39e5f9d963c6580f95316f9b5f76a3a8f660d6cc.tar.bz2 |
ENH: Replaced the EXPENSIVE test property with a COST test property taking a floating point value. Tests are now started in descending order of their cost, which defaults to 0 if none is specified.
Diffstat (limited to 'Source/CTest/cmCTestTestHandler.h')
-rw-r--r-- | Source/CTest/cmCTestTestHandler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestTestHandler.h b/Source/CTest/cmCTestTestHandler.h index 113c1c9..ac46e57 100644 --- a/Source/CTest/cmCTestTestHandler.h +++ b/Source/CTest/cmCTestTestHandler.h @@ -96,7 +96,7 @@ public: std::map<cmStdString, cmStdString> Measurements; bool IsInBasedOnREOptions; bool WillFail; - bool Expensive; + float Cost; bool RunSerial; double Timeout; int Index; |