[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-2272-g20211af

Rolf Eike Beer eike at sf-mail.de
Mon Apr 14 02:06:23 EDT 2014


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, next has been updated
       via  20211afcde5ba050e211b4db5554aff9e9fa45da (commit)
       via  508a0c830acf1f4c94a29da18bed05cfcdec376f (commit)
      from  94d5a919570b7dbb82fa2f45b88f1b57b5d42c8e (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=20211afcde5ba050e211b4db5554aff9e9fa45da
commit 20211afcde5ba050e211b4db5554aff9e9fa45da
Merge: 94d5a91 508a0c8
Author:     Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Mon Apr 14 02:06:23 2014 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Apr 14 02:06:23 2014 -0400

    Merge topic 'openbsd-warnings' into next
    
    508a0c83 suppress warnings about rand() and srand() on OpenBSD


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=508a0c830acf1f4c94a29da18bed05cfcdec376f
commit 508a0c830acf1f4c94a29da18bed05cfcdec376f
Author:     Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Sat Apr 12 23:58:19 2014 +0200
Commit:     Rolf Eike Beer <eike at sf-mail.de>
CommitDate: Mon Apr 14 08:06:03 2014 +0200

    suppress warnings about rand() and srand() on OpenBSD
    
    We don't do crypto here, so a "poor" random doesn't matter. In fact we have API
    to allow people to get a repeatable sequence by setting a specific seed.

diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in
index 3c589b4..65a317d 100644
--- a/CTestCustom.cmake.in
+++ b/CTestCustom.cmake.in
@@ -55,6 +55,8 @@ set(CTEST_CUSTOM_WARNING_EXCEPTION
   "warning.*This version of Mac OS X is unsupported"
   "clang.*: warning: argument unused during compilation: .-g"
   "note: in expansion of macro" # diagnostic context note
+  "cm(StringCommand|CTestTestHandler)\\.cxx.*warning.*rand.*isn.*t random" # we do not do crypto
+  "cm(StringCommand|CTestTestHandler)\\.cxx.*warning.*srand.*seed choices are.*poor" # we do not do crypto
 
   # Ignore clang's summary warning, assuming prior text has matched some
   # other warning expression:

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

Summary of changes:


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list