r4844 - in trunk/varnish-cache/bin/varnishtest: . tests

phk at varnish-cache.org phk at varnish-cache.org
Thu May 20 12:53:16 CEST 2010


Author: phk
Date: 2010-05-20 12:53:16 +0200 (Thu, 20 May 2010)
New Revision: 4844

Modified:
   trunk/varnish-cache/bin/varnishtest/tests/r00693.vtc
   trunk/varnish-cache/bin/varnishtest/vtc.c
Log:
Try to limit r00693 to 64 bit systems.



Modified: trunk/varnish-cache/bin/varnishtest/tests/r00693.vtc
===================================================================
--- trunk/varnish-cache/bin/varnishtest/tests/r00693.vtc	2010-05-20 10:40:21 UTC (rev 4843)
+++ trunk/varnish-cache/bin/varnishtest/tests/r00693.vtc	2010-05-20 10:53:16 UTC (rev 4844)
@@ -3,6 +3,8 @@
 
 test "check boundary condition on vrt_assemble_string()"
 
+feature 64bit
+
 server s1 {
 	rxreq
 	expect req.http.baz == "req.http.baz"

Modified: trunk/varnish-cache/bin/varnishtest/vtc.c
===================================================================
--- trunk/varnish-cache/bin/varnishtest/vtc.c	2010-05-20 10:40:21 UTC (rev 4843)
+++ trunk/varnish-cache/bin/varnishtest/vtc.c	2010-05-20 10:53:16 UTC (rev 4844)
@@ -482,6 +482,9 @@
 		if (!strcmp(av[i], "SO_RCVTIMEO_WORKS"))
 			continue;
 #endif
+		if (sizeof(void*) == 8 && !strcmp(av[i], "64bit"))
+			continue;
+
 		vtc_log(vl, 1, "SKIPPING test, missing feature %s", av[i]);
 		vtc_stop = 1;
 		return;




More information about the varnish-commit mailing list