[Cmake-commits] CMake branch, master, updated. v2.8.2-25-gee433a9

cmake-commits at cmake.org cmake-commits at cmake.org
Wed Jun 30 11:45:25 EDT 2010


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, master has been updated
       via  ee433a96e6f89fcc3e58370689fedef08191b397 (commit)
       via  3b26fa13c42e8cf26b5b7dda57e4a3aac5f1cb11 (commit)
       via  b84220b28716ef7bf3395edf4386a1a038ec9495 (commit)
      from  26ea271b0f560e40cc9d0f1cdc55c73d1863172c (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ee433a96e6f89fcc3e58370689fedef08191b397
commit ee433a96e6f89fcc3e58370689fedef08191b397
Merge: 3b26fa1 26ea271
Author: Brad King <brad.king at kitware.com>
Date:   Wed Jun 30 11:42:30 2010 -0400

    Merge original bad KWSys history into fixed history
    
    Commits 26ea271 and c00e4ac resulted from a bad export to KWSys CVS.
    They were published automatically by a robot.  We constructed a fixed
    history and merged in the original history to fast-forward.


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=3b26fa13c42e8cf26b5b7dda57e4a3aac5f1cb11
commit 3b26fa13c42e8cf26b5b7dda57e4a3aac5f1cb11
Author: Brad King <brad.king at kitware.com>
Date:   Wed Jun 30 11:28:56 2010 -0400

    KWSys: Optionally suppress consistent test failures
    
    Add option KWSYS_TEST_BOGUS_FAILURES that can be set by a containing
    project or in the CMake cache to list tests known to fail consistently
    on a buggy system.

diff --git a/Source/kwsys/CMakeLists.txt b/Source/kwsys/CMakeLists.txt
index bdf6613..bcc7a96 100644
--- a/Source/kwsys/CMakeLists.txt
+++ b/Source/kwsys/CMakeLists.txt
@@ -1125,5 +1125,11 @@ IF(KWSYS_STANDALONE OR CMake_SOURCE_DIR)
       SET_TESTS_PROPERTIES(kwsys.testFail PROPERTIES MEASUREMENT "Some Key=Some Value")
       MESSAGE(STATUS "GET_TEST_PROPERTY returned: ${wfv}")
     ENDIF(COMMAND SET_TESTS_PROPERTIES AND COMMAND GET_TEST_PROPERTY AND KWSYS_STANDALONE)
+
+    # Suppress known consistent failures on buggy systems.
+    IF(KWSYS_TEST_BOGUS_FAILURES)
+      SET_TESTS_PROPERTIES(${KWSYS_TEST_BOGUS_FAILURES} PROPERTIES WILL_FAIL ON)
+    ENDIF()
+
   ENDIF(BUILD_TESTING)
 ENDIF(KWSYS_STANDALONE OR CMake_SOURCE_DIR)

http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b84220b28716ef7bf3395edf4386a1a038ec9495
commit b84220b28716ef7bf3395edf4386a1a038ec9495
Author: Brad King <brad.king at kitware.com>
Date:   Wed Jun 30 11:28:37 2010 -0400

    KWSys: Use short fallback timeout for Process tests
    
    If any of the KWSys Process tests take more than a minute or two then
    something is wrong.  There is no need to wait for a long default
    timeout.

diff --git a/Source/kwsys/CMakeLists.txt b/Source/kwsys/CMakeLists.txt
index 083629a..bdf6613 100644
--- a/Source/kwsys/CMakeLists.txt
+++ b/Source/kwsys/CMakeLists.txt
@@ -1097,6 +1097,7 @@ IF(KWSYS_STANDALONE OR CMake_SOURCE_DIR)
     FOREACH(n 1 2 3 4 5 6 ${KWSYS_TEST_PROCESS_7})
       ADD_TEST(kwsys.testProcess-${n} ${EXEC_DIR}/${KWSYS_NAMESPACE}TestProcess ${n})
       KWSYS_SET_PROPERTY(TEST kwsys.testProcess-${n} PROPERTY LABELS ${KWSYS_LABELS_TEST})
+      SET_TESTS_PROPERTIES(kwsys.testProcess-${n} PROPERTIES TIMEOUT 120)
     ENDFOREACH(n)
 
     # Some Apple compilers produce bad optimizations in this source.

-----------------------------------------------------------------------

Summary of changes:


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list