[Cmake-commits] CMake branch, next, updated. v3.2.2-2887-g38d67d6

Brad King brad.king at kitware.com
Mon May 18 09:27:33 EDT 2015


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  38d67d676db5ee4e11f02a368abb4c35e6b8bf05 (commit)
       via  639620eec43e0241930cd454248d93a7b43c1fdf (commit)
       via  09a3d21d712a80a94b9a90c10519a42dbee114ae (commit)
      from  f5c8a9797b7d0efb79566c1ef3014bc08e7a92bc (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=38d67d676db5ee4e11f02a368abb4c35e6b8bf05
commit 38d67d676db5ee4e11f02a368abb4c35e6b8bf05
Merge: f5c8a97 639620e
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon May 18 09:27:33 2015 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon May 18 09:27:33 2015 -0400

    Merge topic 'hp-ux-suppress-pp-warning' into next
    
    639620ee CTestCustom: Suppress HP-UX preprocessor concatenation warning
    09a3d21d CMake Nightly Date Stamp


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=639620eec43e0241930cd454248d93a7b43c1fdf
commit 639620eec43e0241930cd454248d93a7b43c1fdf
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon May 18 09:19:59 2015 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Mon May 18 09:25:51 2015 -0400

    CTestCustom: Suppress HP-UX preprocessor concatenation warning
    
    The HP compiler on HP-UX 11.11 warns:
    
     Warning (anachronism) 823: ".../test_INT_format.h", line 194 # Redundant
     preprocessing concatenation operation results in two valid preprocessing
     tokens. Depending on this implementation defined behavior will result in
     non-portable code.
           TEST_C(INT32_C, -0x55000000, i32, int32_t, uint32_t)
           ^^^^^^
     Warning (anachronism) 823: ".../test_INT_format.h", line 196 # Redundant
     preprocessing concatenation operation results in two valid preprocessing
     tokens. Depending on this implementation defined behavior will result in
     non-portable code.
           TEST_C(INT64_C, -0x5500000000000000, i64, int64_t, uint64_t)
           ^^^^^^
    
    There is likely a subtle problem with the way one of the system-provided type
    macros is defined but the test passes despite the warning.  Simply suppress it.

diff --git a/CTestCustom.cmake.in b/CTestCustom.cmake.in
index cc2fbb8..7f20d10 100644
--- a/CTestCustom.cmake.in
+++ b/CTestCustom.cmake.in
@@ -37,6 +37,7 @@ set(CTEST_CUSTOM_WARNING_EXCEPTION
   "LINK : warning LNK4089: all references to.*SHELL32.dll.*discarded by /OPT:REF"
   "LINK : warning LNK4089: all references to.*USER32.dll.*discarded by /OPT:REF"
   "LINK : warning LNK4089: all references to.*ole32.dll.*discarded by /OPT:REF"
+  "Warning.*: .*/Utilities/KWIML/test/test_INT_format.h.* # Redundant preprocessing concatenation"
   "Warning: library was too large for page size.*"
   "Warning: public.*_archive_.*in module.*archive_*clashes with prior module.*archive_.*"
   "Warning: public.*BZ2_bz.*in module.*bzlib.*clashes with prior module.*bzlib.*"

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

Summary of changes:
 CTestCustom.cmake.in      |    1 +
 Source/CMakeVersion.cmake |    2 +-
 2 files changed, 2 insertions(+), 1 deletion(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list