From 9e5e5d7e39c9f7bbeafa4d6f0dfa4b8697e9d770 Mon Sep 17 00:00:00 2001 From: Charles Kerr Date: Wed, 19 Oct 2016 11:41:02 +0200 Subject: remove the temporary tracers from r34 and r35 --- tests/unit/adbd-client-test.cpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'tests') diff --git a/tests/unit/adbd-client-test.cpp b/tests/unit/adbd-client-test.cpp index 20d6ee4..d1ce740 100644 --- a/tests/unit/adbd-client-test.cpp +++ b/tests/unit/adbd-client-test.cpp @@ -70,20 +70,14 @@ TEST_F(AdbdClientFixture, SocketPlumbing) for (const auto& test : tests) { -g_message("%s %s thread %p starting test", G_STRLOC, G_STRFUNC, g_thread_self()); // start an AdbdClient that listens for PKRequests std::string pk; auto adbd_client = std::make_shared(socket_path); auto connection = adbd_client->on_pk_request().connect([&pk, main_thread, test](const AdbdClient::PKRequest& req){ -g_message("%s %s thread %p", G_STRLOC, G_STRFUNC, g_thread_self()); EXPECT_EQ(main_thread, g_thread_self()); -g_message("%s %s thread %p", G_STRLOC, G_STRFUNC, g_thread_self()); g_message("in on_pk_request with %s", req.public_key.c_str()); -g_message("%s %s thread %p", G_STRLOC, G_STRFUNC, g_thread_self()); pk = req.public_key; -g_message("%s %s thread %p", G_STRLOC, G_STRFUNC, g_thread_self()); req.respond(test.response); -g_message("%s %s thread %p", G_STRLOC, G_STRFUNC, g_thread_self()); }); // start a mock AdbdServer with to fire test key requests and wait for a response @@ -94,11 +88,9 @@ g_message("%s %s thread %p", G_STRLOC, G_STRFUNC, g_thread_self()); EXPECT_EQ(test.expected_response, adbd_server->m_responses.front()); // cleanup -g_message("%s %s thread %p cleanup", G_STRLOC, G_STRFUNC, g_thread_self()); connection.disconnect(); adbd_client.reset(); adbd_server.reset(); g_unlink(socket_path.c_str()); -g_message("%s %s thread %p test exit", G_STRLOC, G_STRFUNC, g_thread_self()); } } -- cgit v1.2.3