[Cmake-commits] CMake branch, next, updated. v3.7.1-1810-gb5b7a71

Rolf Eike Beer eike at sf-mail.de
Fri Dec 16 11:17:17 EST 2016


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  b5b7a7107955aaa704230378393745f1dffeddc1 (commit)
       via  682a8d17ce83d04b867e7197cc7e34734d4990f9 (commit)
      from  35ca0a30dcc2048ccac57e1dec7756416abd3468 (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 -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=b5b7a7107955aaa704230378393745f1dffeddc1
commit b5b7a7107955aaa704230378393745f1dffeddc1
Merge: 35ca0a3 682a8d1
Author:     Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Fri Dec 16 11:17:16 2016 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri Dec 16 11:17:16 2016 -0500

    Merge topic 'gcc-34-features' into next
    
    682a8d17 FIXUP: CompileFeatures tests


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=682a8d17ce83d04b867e7197cc7e34734d4990f9
commit 682a8d17ce83d04b867e7197cc7e34734d4990f9
Author:     Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Fri Dec 16 17:16:56 2016 +0100
Commit:     Rolf Eike Beer <eike at sf-mail.de>
CommitDate: Fri Dec 16 17:16:56 2016 +0100

    FIXUP: CompileFeatures tests

diff --git a/Tests/CMakeCommands/target_compile_features/main.cpp b/Tests/CMakeCommands/target_compile_features/main.cpp
index 9ebeefc..aee232a 100644
--- a/Tests/CMakeCommands/target_compile_features/main.cpp
+++ b/Tests/CMakeCommands/target_compile_features/main.cpp
@@ -2,5 +2,5 @@
 int main(int, char**)
 {
   long long i = 1 << 31;
-  return (i << 1) != 0;
+  return (i << 1) == 0;
 }
diff --git a/Tests/CompileFeatures/main.cpp b/Tests/CompileFeatures/main.cpp
index 7abf90f..5472cab 100644
--- a/Tests/CompileFeatures/main.cpp
+++ b/Tests/CompileFeatures/main.cpp
@@ -2,5 +2,5 @@
 int main(int, char**)
 {
   long long value = 1 << 31;
-  return (value << 1) != 0;
+  return (value << 1) == 0;
 }

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

Summary of changes:
 Tests/CMakeCommands/target_compile_features/main.cpp |    2 +-
 Tests/CompileFeatures/main.cpp                       |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list