1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-18 18:42:46 +02:00

Remove a stale test case.

llvm-svn: 287183
This commit is contained in:
Lang Hames 2016-11-17 01:02:52 +00:00
parent c47b9b438e
commit bae3962ce1

View File

@ -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";
// }