[ORC] Remove more extraneous semicolons from r300167, rename the RPC Expected

tests to be consistent with the Error tests.

llvm-svn: 300173
This commit is contained in:
Lang Hames 2017-04-13 05:05:26 +00:00
parent 8a464a7592
commit 068655911e
1 changed files with 4 additions and 4 deletions

View File

@ -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();