Skip to content

Commit

Permalink
Remove a stale test case.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287183 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
lhames committed Nov 17, 2016
1 parent d177313 commit a0c2c80
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -244,25 +244,3 @@ TEST(DummyRPC, TestSerialization) {

ServerThread.join();
}

// Test the synchronous call API.
// TEST_F(DummyRPC, TestSynchronousCall) {
// Queue Q1, Q2;
// QueueChannel C1(Q1, Q2);
// QueueChannel C2(Q2, Q1);
//
// auto ServerResult =
// std::async(std::launch::async,
// [&]() {
// return expect<IntInt>(C2, [&](int32_t V) { return V; });
// });
//
// auto ValOrErr = callST<IntInt>(C1, 42);
//
// EXPECT_FALSE(!!ServerResult.get())
// << "Server returned an error.";
// EXPECT_TRUE(!!ValOrErr)
// << "callST returned an error.";
// EXPECT_EQ(*ValOrErr, 42)
// << "Incorrect callST<IntInt> result";
// }

0 comments on commit a0c2c80

Please sign in to comment.