diff options
author | Brad King <brad.king@kitware.com> | 2017-02-17 13:45:36 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2017-02-17 13:45:36 (GMT) |
commit | 261b5785adbadd994c5f8869766f5c1017cbf721 (patch) | |
tree | 42981a54767969994ecb3a9d4aef4271c0b0a8d2 /Source/CTest/cmCTestP4.h | |
parent | b6c9a851cba4f28bf0614b145803dc46096b6cde (diff) | |
parent | f10b2f72f6979ccb16410d97bac98c440eb7f992 (diff) | |
download | CMake-261b5785adbadd994c5f8869766f5c1017cbf721.zip CMake-261b5785adbadd994c5f8869766f5c1017cbf721.tar.gz CMake-261b5785adbadd994c5f8869766f5c1017cbf721.tar.bz2 |
Merge topic 'capture-ctest_update-svn-failures'
f10b2f72 ctest_update: Capture failure of svn to load revisions and local mods
ef399f9b ctest_update: Refactor internal APIs to support more failure cases
Diffstat (limited to 'Source/CTest/cmCTestP4.h')
-rw-r--r-- | Source/CTest/cmCTestP4.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/CTest/cmCTestP4.h b/Source/CTest/cmCTestP4.h index eadc4fb..2c04dc6 100644 --- a/Source/CTest/cmCTestP4.h +++ b/Source/CTest/cmCTestP4.h @@ -51,13 +51,13 @@ private: void SetP4Options(std::vector<char const*>& options); std::string GetWorkingRevision(); - void NoteOldRevision() CM_OVERRIDE; - void NoteNewRevision() CM_OVERRIDE; + bool NoteOldRevision() CM_OVERRIDE; + bool NoteNewRevision() CM_OVERRIDE; bool UpdateImpl() CM_OVERRIDE; bool UpdateCustom(const std::string& custom); - void LoadRevisions() CM_OVERRIDE; - void LoadModifications() CM_OVERRIDE; + bool LoadRevisions() CM_OVERRIDE; + bool LoadModifications() CM_OVERRIDE; class ChangesParser; class DescribeParser; |