From: JINMEI Tatuya Date: Fri, 30 Dec 2011 18:12:59 +0000 (-0800) Subject: [805] added explicit 'this' in TYPED_TESTs. At least clang doesn't compile X-Git-Tag: trac2351_base~304^2~16^2~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ad4b9819be1af780f17018d82097dedd6965c19d;p=thirdparty%2Fkea.git [805] added explicit 'this' in TYPED_TESTs. At least clang doesn't compile it without them. --- diff --git a/src/lib/asiodns/tests/dns_server_unittest.cc b/src/lib/asiodns/tests/dns_server_unittest.cc index ad7dfa1162..92b5f02e0d 100644 --- a/src/lib/asiodns/tests/dns_server_unittest.cc +++ b/src/lib/asiodns/tests/dns_server_unittest.cc @@ -483,8 +483,8 @@ TYPED_TEST(DNSServerTest, stopUDPServerAfterOneQuery) { // Test whether udp server stopped successfully before server start to serve TYPED_TEST(DNSServerTest, stopUDPServerBeforeItStartServing) { this->udp_server_->stop(); - testStopServerByStopper(this->udp_server_, this->udp_client_, - this->udp_client_); + this->testStopServerByStopper(this->udp_server_, this->udp_client_, + this->udp_client_); EXPECT_EQ(std::string(""), this->udp_client_->getReceivedData()); EXPECT_TRUE(this->serverStopSucceed()); } @@ -563,16 +563,16 @@ TYPED_TEST(DNSServerTest, stopTCPServerDuringMessageCheck) { // Test whether tcp server stopped successfully during query lookup TYPED_TEST(DNSServerTest, stopTCPServerDuringQueryLookup) { - testStopServerByStopper(this->tcp_server_, this->tcp_client_, - this->lookup_); + this->testStopServerByStopper(this->tcp_server_, this->tcp_client_, + this->lookup_); EXPECT_EQ(std::string(""), this->tcp_client_->getReceivedData()); EXPECT_TRUE(this->serverStopSucceed()); } // Test whether tcp server stopped successfully during composing answer TYPED_TEST(DNSServerTest, stopTCPServerDuringPrepareAnswer) { - testStopServerByStopper(this->tcp_server_, this->tcp_client_, - this->answer_); + this->testStopServerByStopper(this->tcp_server_, this->tcp_client_, + this->answer_); EXPECT_EQ(std::string(""), this->tcp_client_->getReceivedData()); EXPECT_TRUE(this->serverStopSucceed()); }