aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2017-04-13 05:05:26 +0000
committerLang Hames <lhames@gmail.com>2017-04-13 05:05:26 +0000
commit068655911eb7a194f3b803029306f368125b9342 (patch)
tree59dd361118ca4ddfb8442bb42714127d4c8bec1b /llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
parent8a464a7592b858895e7e3a881eb2920fc7b42641 (diff)
downloadllvm-068655911eb7a194f3b803029306f368125b9342.zip
llvm-068655911eb7a194f3b803029306f368125b9342.tar.gz
llvm-068655911eb7a194f3b803029306f368125b9342.tar.bz2
[ORC] Remove more extraneous semicolons from r300167, rename the RPC Expected
tests to be consistent with the Error tests. llvm-svn: 300173
Diffstat (limited to 'llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp')
-rw-r--r--llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp b/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
index 095bf25..1c9764b 100644
--- a/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
+++ b/llvm/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
@@ -615,7 +615,7 @@ TEST(DummyRPC, ReturnErrorFailure) {
ServerThread.join();
}
-TEST(DummyRPC, RPCExpectedSuccess) {
+TEST(DummyRPC, ReturnExpectedSuccess) {
registerDummyErrorSerialization<QueueChannel>();
auto Channels = createPairedQueueChannels();
@@ -645,9 +645,9 @@ TEST(DummyRPC, RPCExpectedSuccess) {
cantFail(Client.handleOne());
ServerThread.join();
-};
+}
-TEST(DummyRPC, RPCExpectedFailure) {
+TEST(DummyRPC, ReturnExpectedFailure) {
registerDummyErrorSerialization<QueueChannel>();
auto Channels = createPairedQueueChannels();
@@ -683,7 +683,7 @@ TEST(DummyRPC, RPCExpectedFailure) {
cantFail(Client.handleOne());
ServerThread.join();
-};
+}
TEST(DummyRPC, TestParallelCallGroup) {
auto Channels = createPairedQueueChannels();