[experimental-ims] aed74d6 Enable regression test for bug 971, since 1060 was a dup of it

Geoff Simmons geoff at varnish-cache.org
Mon Jan 9 21:52:41 CET 2012


commit aed74d6c93f932abcd111c2496c543d16f2745d5
Author: Rogier 'DocWilco' Mulhuijzen <github at bsdchicks.com>
Date:   Mon Nov 21 21:35:22 2011 +0100

    Enable regression test for bug 971, since 1060 was a dup of it
    
    1060 was fixed with bdbb1d59513cba8b268ed1dbe2d948619ef4ae07
    
    Fixes	#971

diff --git a/bin/varnishtest/tests.disabled/r00971.vtc b/bin/varnishtest/tests.disabled/r00971.vtc
deleted file mode 100644
index f8b57f0..0000000
--- a/bin/varnishtest/tests.disabled/r00971.vtc
+++ /dev/null
@@ -1,25 +0,0 @@
-
-varnishtest "Test DNS director order"
-
-varnish v1 -vcl+backend {
-	
-	backend test {
-		.host = "192.168.0.1";
-	}
-
-	director foo dns {
-		{ .backend = { .host = "127.0.0.1";} }
-		.list = {
-			"192.168.0.0"/24;
-		}
-	}
-
-	sub vcl_recv {
-		set req.backend = foo;
-		if (req.http.x-aa) {
-			set req.backend = test;
-		}
-	}
-
-} -start
-
diff --git a/bin/varnishtest/tests/r00971.vtc b/bin/varnishtest/tests/r00971.vtc
new file mode 100644
index 0000000..f8b57f0
--- /dev/null
+++ b/bin/varnishtest/tests/r00971.vtc
@@ -0,0 +1,25 @@
+
+varnishtest "Test DNS director order"
+
+varnish v1 -vcl+backend {
+	
+	backend test {
+		.host = "192.168.0.1";
+	}
+
+	director foo dns {
+		{ .backend = { .host = "127.0.0.1";} }
+		.list = {
+			"192.168.0.0"/24;
+		}
+	}
+
+	sub vcl_recv {
+		set req.backend = foo;
+		if (req.http.x-aa) {
+			set req.backend = test;
+		}
+	}
+
+} -start
+



More information about the varnish-commit mailing list