fixed IP address for ping tests (10.0.0.1 is reachable from build server)

This commit is contained in:
Guenter Obiltschnig 2014-04-20 11:23:18 +02:00
parent bb6b33ac30
commit 00cd9dccec

View File

@ -76,7 +76,7 @@ void ICMPClientTest::testPing()
// warning: may fail depending on the existence of the addresses at test site
// if so, adjust accordingly (i.e. specify non-existent or unreachable IP addresses)
assert(0 == _icmpClient.ping("192.168.243.1"));
assert(0 == _icmpClient.ping("10.0.0.1"));
assert(0 == _icmpClient.ping("10.11.12.13"));
}