[experimental-ims] 1695f2a Move r00971.vtc to tests.disabled/ and add README

Geoff Simmons geoff at varnish-cache.org
Wed Aug 31 16:01:21 CEST 2011


commit 1695f2abb7823ef2a52079331f6e3f9951d55cc6
Author: Kristian Lyngstol <kristian at bohemians.org>
Date:   Mon Aug 15 11:16:15 2011 +0200

    Move r00971.vtc to tests.disabled/ and add README

diff --git a/bin/varnishtest/tests.disabled/README b/bin/varnishtest/tests.disabled/README
new file mode 100644
index 0000000..7b44514
--- /dev/null
+++ b/bin/varnishtest/tests.disabled/README
@@ -0,0 +1,5 @@
+Tests in this directory are not executed automatically on 'make check'.
+
+The main reason for a test to live here is when the underlying problem
+isn't fixed yet, but a test case exists. This avoids breaking the rest of
+the 'make check' tests while a fix is being produced.
diff --git a/bin/varnishtest/tests.disabled/r00971.vtc b/bin/varnishtest/tests.disabled/r00971.vtc
new file mode 100644
index 0000000..f8b57f0
--- /dev/null
+++ b/bin/varnishtest/tests.disabled/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
+
diff --git a/bin/varnishtest/tests/r00971.vtc b/bin/varnishtest/tests/r00971.vtc
deleted file mode 100644
index f8b57f0..0000000
--- a/bin/varnishtest/tests/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
-



More information about the varnish-commit mailing list