From be067baca1b6b033bd2747bf0f3e5171ebb6fd3a Mon Sep 17 00:00:00 2001
From: Fabian Keil <fk@fabiankeil.de>
Date: Sun, 18 Nov 2012 14:55:29 +0100
Subject: [PATCH 07/10] Add a HOSTIP precheck for test 31 and 1105

They currently only work for 127.0.0.1 which
is hardcoded and can't be easily changed.
---
 tests/data/test1105 | 3 +++
 tests/data/test31   | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/tests/data/test1105 b/tests/data/test1105
index 1b2bf56..922346f 100644
--- a/tests/data/test1105
+++ b/tests/data/test1105
@@ -34,6 +34,9 @@ HTTP with cookie parser and header recording
  <command>
 "http://%HOSTIP:%HTTPPORT/we/want/1105?parm1=this*that/other/thing&parm2=foobar/1105" -c log/cookie1105.txt -d "userid=myname&password=mypassword"
 </command>
+<precheck>
+perl -e 'if ("%HOSTIP" !~ /127\.0\.0\.1$/) {print "Test only works for HOSTIP 127.0.0.1"; exit(1)}'
+</precheck>
 </client>
 
 # Verify data after the test has been "shot"
diff --git a/tests/data/test31 b/tests/data/test31
index ef05f7c..b1171d8 100644
--- a/tests/data/test31
+++ b/tests/data/test31
@@ -72,6 +72,9 @@ TZ=GMT
  <command>
 http://%HOSTIP:%HTTPPORT/we/want/31 -b none -c log/jar31.txt
 </command>
+<precheck>
+perl -e 'if ("%HOSTIP" !~ /127\.0\.0\.1$/) {print "Test only works for HOSTIP 127.0.0.1"; exit(1)}'
+</precheck>
 </client>
 
 # Verify data after the test has been "shot"
-- 
1.8.0


