[Http-webtest-commits] HTTP-WebTest/lib/HTTP/WebTest SelfTest.pm,1.7,1.8
Brought to you by:
m_ilya,
richardanderson
From: Ilya M. <m_...@us...> - 2003-07-03 11:22:04
|
Update of /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest In directory sc8-pr-cvs1:/tmp/cvs-serv20327 Modified Files: SelfTest.pm Log Message: Use 127.0.0.1 as default hostname for test server Index: SelfTest.pm =================================================================== RCS file: /cvsroot/http-webtest/HTTP-WebTest/lib/HTTP/WebTest/SelfTest.pm,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** SelfTest.pm 2 Mar 2003 11:52:10 -0000 1.7 --- SelfTest.pm 3 Jul 2003 11:22:01 -0000 1.8 *************** *** 42,46 **** use Algorithm::Diff qw(diff); use MIME::Base64; - use Sys::Hostname; use URI; --- 42,45 ---- *************** *** 53,57 **** =cut ! $HOSTNAME = $ENV{TEST_HOSTNAME} || hostname; =head2 $PORT --- 52,56 ---- =cut ! $HOSTNAME = $ENV{TEST_HOSTNAME} || '127.0.0.1'; =head2 $PORT |