some machines report their hostnameinstead of localhost
authorNathan S. Evans <evans@in.tum.de>
Thu, 9 Dec 2010 10:53:52 +0000 (10:53 +0000)
committerNathan S. Evans <evans@in.tum.de>
Thu, 9 Dec 2010 10:53:52 +0000 (10:53 +0000)
src/peerinfo-tool/test_gnunet_peerinfo.py.in

index 0398b39339436887b01dd74782877f7f66f09ea7..86ce87eda622dfa243b36973658801006ea5f281 100755 (executable)
@@ -47,12 +47,12 @@ try:
   os.system ('sleep 1')
   pinfo = pexpect.spawn ('gnunet-peerinfo -c test_gnunet_peerinfo_data.conf')
   pinfo.expect (re.compile ("Peer `.*\'\r"));
-  pinfo.expect (re.compile (" *localhost:24357\r"));
+  pinfo.expect (re.compile (" *:24357\r"));
   pinfo.expect (pexpect.EOF);
 
   pinfo = pexpect.spawn ('gnunet-peerinfo -c test_gnunet_peerinfo_data.conf -n')
   pinfo.expect (re.compile ("Peer `.*\'\r"));
-  pinfo.expect (re.compile (" *127..*:24357\r"));
+  pinfo.expect (re.compile (" *:24357\r"));
   pinfo.expect (pexpect.EOF);
 
   pinfo = pexpect.spawn ('gnunet-peerinfo -c test_gnunet_peerinfo_data.conf -qs')