diff options
author | Brad King <brad.king@kitware.com> | 2021-10-13 14:00:08 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-10-13 14:00:08 (GMT) |
commit | 09f4edbcefe02239dd175daf198aeac42c3c8bb8 (patch) | |
tree | 819184745bd75b1353c58578c9973a3cabdf53e4 /Tests/CMakeLib | |
parent | 315fc296e3c1ecddbf59a2144b0dff9a05c715ed (diff) | |
download | CMake-09f4edbcefe02239dd175daf198aeac42c3c8bb8.zip CMake-09f4edbcefe02239dd175daf198aeac42c3c8bb8.tar.gz CMake-09f4edbcefe02239dd175daf198aeac42c3c8bb8.tar.bz2 |
Fix Clang -Wbitwise-instead-of-logical warnings
Diffstat (limited to 'Tests/CMakeLib')
-rw-r--r-- | Tests/CMakeLib/testUVRAII.cxx | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/Tests/CMakeLib/testUVRAII.cxx b/Tests/CMakeLib/testUVRAII.cxx index 7d21959..fd88e24 100644 --- a/Tests/CMakeLib/testUVRAII.cxx +++ b/Tests/CMakeLib/testUVRAII.cxx @@ -221,10 +221,15 @@ static bool testLoopDestructor() int testUVRAII(int, char** const) { - if ((testAsyncShutdown() && - testAsyncDtor() & testAsyncMove() & testCrossAssignment() & - testAllMoves() & testLoopReset() & testLoopDestructor()) == 0) { + if (!testAsyncShutdown()) { return -1; } - return 0; + bool passed = true; + passed = testAsyncDtor() && passed; + passed = testAsyncMove() && passed; + passed = testCrossAssignment() && passed; + passed = testAllMoves() && passed; + passed = testLoopReset() && passed; + passed = testLoopDestructor() && passed; + return passed ? 0 : -1; } |