aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp')
-rw-r--r--llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp b/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
index 22d3739a..af194c9 100644
--- a/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
+++ b/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
@@ -103,7 +103,7 @@ TEST_F(DummyRPC, TestAsyncVoidBool) {
// Verify that the function returned ok.
auto Err = ResOrErr->first.get();
- EXPECT_TRUE(!!Err) << "Remote void function failed to execute.";
+ EXPECT_FALSE(!!Err) << "Remote void function failed to execute.";
}
TEST_F(DummyRPC, TestAsyncIntInt) {
@@ -180,7 +180,7 @@ TEST_F(DummyRPC, TestSerialization) {
// Verify that the function returned ok.
auto Err = ResOrErr->first.get();
- EXPECT_TRUE(!!Err) << "Remote void function failed to execute.";
+ EXPECT_FALSE(!!Err) << "Remote void function failed to execute.";
}
// Test the synchronous call API.