BIND 10 trac1522, updated. b82303ac5c494936e9fc7dee82be764b242e48ba [1522] missing 'this' for TYPED_TESTs

BIND 10 source code commits bind10-changes at lists.isc.org
Thu Dec 22 21:59:42 UTC 2011


The branch, trac1522 has been updated
       via  b82303ac5c494936e9fc7dee82be764b242e48ba (commit)
      from  cccc0f378a5aa81c51dc529e2b01823f00efc326 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit b82303ac5c494936e9fc7dee82be764b242e48ba
Author: JINMEI Tatuya <jinmei at isc.org>
Date:   Thu Dec 22 13:59:29 2011 -0800

    [1522] missing 'this' for TYPED_TESTs

-----------------------------------------------------------------------

Summary of changes:
 src/lib/asiodns/tests/dns_server_unittest.cc |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/asiodns/tests/dns_server_unittest.cc b/src/lib/asiodns/tests/dns_server_unittest.cc
index cd80e2a..57f677b 100644
--- a/src/lib/asiodns/tests/dns_server_unittest.cc
+++ b/src/lib/asiodns/tests/dns_server_unittest.cc
@@ -466,8 +466,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());
 }
@@ -546,16 +546,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());
 }




More information about the bind10-changes mailing list