summaryrefslogtreecommitdiffstats
path: root/Tests/CMakeLib/testUVRAII.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-10-13 14:00:08 (GMT)
committerBrad King <brad.king@kitware.com>2021-10-13 14:00:08 (GMT)
commit09f4edbcefe02239dd175daf198aeac42c3c8bb8 (patch)
tree819184745bd75b1353c58578c9973a3cabdf53e4 /Tests/CMakeLib/testUVRAII.cxx
parent315fc296e3c1ecddbf59a2144b0dff9a05c715ed (diff)
downloadCMake-09f4edbcefe02239dd175daf198aeac42c3c8bb8.zip
CMake-09f4edbcefe02239dd175daf198aeac42c3c8bb8.tar.gz
CMake-09f4edbcefe02239dd175daf198aeac42c3c8bb8.tar.bz2
Fix Clang -Wbitwise-instead-of-logical warnings
Diffstat (limited to 'Tests/CMakeLib/testUVRAII.cxx')
-rw-r--r--Tests/CMakeLib/testUVRAII.cxx13
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;
}