[llvm] r287183 - Remove a stale test case.

Lang Hames via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 16 17:02:52 PST 2016


Author: lhames
Date: Wed Nov 16 19:02:52 2016
New Revision: 287183

URL: http://llvm.org/viewvc/llvm-project?rev=287183&view=rev
Log:
Remove a stale test case.

Modified:
    llvm/trunk/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp

Modified: llvm/trunk/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp?rev=287183&r1=287182&r2=287183&view=diff
==============================================================================
--- llvm/trunk/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp (original)
+++ llvm/trunk/unittests/ExecutionEngine/Orc/RPCUtilsTest.cpp Wed Nov 16 19:02:52 2016
@@ -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";
-// }




More information about the llvm-commits mailing list