summaryrefslogtreecommitdiff
path: root/dbtests/socktests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'dbtests/socktests.cpp')
-rw-r--r--dbtests/socktests.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/dbtests/socktests.cpp b/dbtests/socktests.cpp
index c263f2e..267b1d6 100644
--- a/dbtests/socktests.cpp
+++ b/dbtests/socktests.cpp
@@ -17,7 +17,7 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include "stdafx.h"
+#include "pch.h"
#include "../util/sock.h"
#include "dbtests.h"
@@ -29,6 +29,7 @@ namespace SockTests {
void run() {
ASSERT_EQUALS( "127.0.0.1", hostbyname( "localhost" ) );
ASSERT_EQUALS( "127.0.0.1", hostbyname( "127.0.0.1" ) );
+ // ASSERT_EQUALS( "::1", hostbyname( "::1" ) ); // IPv6 disabled at runtime by default.
}
};