From 24828a324b222f888672c24498900d365138831d Mon Sep 17 00:00:00 2001 From: Lang Hames Date: Thu, 13 Apr 2017 05:05:26 +0000 Subject: [PATCH] [ORC] Remove more extraneous semicolons from r300167, rename the RPC Expected tests to be consistent with the Error tests. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@300173 91177308-0d34-0410-b5e6-96231b3b80d8 --- unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp b/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp index 095bf25291b..1c9764b555f 100644 --- a/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp +++ b/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp @@ -615,7 +615,7 @@ TEST(DummyRPC, ReturnErrorFailure) { ServerThread.join(); } -TEST(DummyRPC, RPCExpectedSuccess) { +TEST(DummyRPC, ReturnExpectedSuccess) { registerDummyErrorSerialization(); auto Channels = createPairedQueueChannels(); @@ -645,9 +645,9 @@ TEST(DummyRPC, RPCExpectedSuccess) { cantFail(Client.handleOne()); ServerThread.join(); -}; +} -TEST(DummyRPC, RPCExpectedFailure) { +TEST(DummyRPC, ReturnExpectedFailure) { registerDummyErrorSerialization(); auto Channels = createPairedQueueChannels(); @@ -683,7 +683,7 @@ TEST(DummyRPC, RPCExpectedFailure) { cantFail(Client.handleOne()); ServerThread.join(); -}; +} TEST(DummyRPC, TestParallelCallGroup) { auto Channels = createPairedQueueChannels(); -- 2.50.1