diff options
author | David Cole <david.cole@kitware.com> | 2009-10-16 15:47:51 (GMT) |
---|---|---|
committer | David Cole <david.cole@kitware.com> | 2009-10-16 15:47:51 (GMT) |
commit | 402fa2ceeb769221966481d03ecc9cfdcc2ba13d (patch) | |
tree | c42d455bbef81a7e461877865037a2cad97bd0a1 /Tests | |
parent | 9578bfc0efe5c2d667c7336e247274f1ad8f0e25 (diff) | |
download | CMake-402fa2ceeb769221966481d03ecc9cfdcc2ba13d.zip CMake-402fa2ceeb769221966481d03ecc9cfdcc2ba13d.tar.gz CMake-402fa2ceeb769221966481d03ecc9cfdcc2ba13d.tar.bz2 |
Allow test to pass even if an expected-to-fail submit claims 'Submission successful' - apparently when there is a valid HTTP_PROXY involved, our submitting to an empty drop location appears to succeed. Presumably, the proxy simply takes it like a man, and then discards it...
Diffstat (limited to 'Tests')
-rw-r--r-- | Tests/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/CMakeLists.txt b/Tests/CMakeLists.txt index cc3ee933..9763e49 100644 --- a/Tests/CMakeLists.txt +++ b/Tests/CMakeLists.txt @@ -1138,7 +1138,8 @@ ${CMake_BINARY_DIR}/bin/cmake -DVERSION=CVS -P ${CMake_SOURCE_DIR}/Utilities/Rel set(regex "${regex}(Couldn.t resolve host ") set(regex "${regex}|couldn.t connect to host") set(regex "${regex}|libcurl was built with SSL disabled. https: not supported)") - set(regex "${regex}|Submission method .xmlrpc. not compiled into CTest)") + set(regex "${regex}|Submission method .xmlrpc. not compiled into CTest") + set(regex "${regex}|Submission successful)") set(ctest_coverage_labels_args "") |