[master] 0410099 Let stderr escape so we can see it in case of failure

Poul-Henning Kamp phk at FreeBSD.org
Mon Oct 17 12:16:05 CEST 2016


commit 041009945399fe1c86ee3085aed77ef99c354f5a
Author: Poul-Henning Kamp <phk at FreeBSD.org>
Date:   Mon Oct 17 10:15:25 2016 +0000

    Let stderr escape so we can see it in case of failure

diff --git a/bin/varnishtest/tests/a00009.vtc b/bin/varnishtest/tests/a00009.vtc
index b751383..a1bf19e 100644
--- a/bin/varnishtest/tests/a00009.vtc
+++ b/bin/varnishtest/tests/a00009.vtc
@@ -1,9 +1,9 @@
 varnishtest "Code coverage of VCL compiler and RSTdump etc"
 
-shell "varnishd -b 127.0.0.1:80 -C -n ${tmpdir} > /dev/null 2>&1"
-shell "varnishd -x dumprstparam > /dev/null 2>&1"
-shell "varnishd -x dumprstvsl > /dev/null 2>&1"
-shell "varnishd -x dumprstcli > /dev/null 2>&1"
+shell "varnishd -b 127.0.0.1:80 -C -n ${tmpdir} > /${tmpdir}/_.c"
+shell "varnishd -x dumprstparam > /${tmpdir}/_.param"
+shell "varnishd -x dumprstvsl > /${tmpdir}/_.vsl"
+shell "varnishd -x dumprstcli > /${tmpdir}/_.cli"
 err_shell {VCL version declaration missing} "echo 'bad vcl' >${tmpdir}/t.vcl ; varnishd -f ${tmpdir}/t.vcl -n ${tmpdir} 2>&1"
 err_shell {VCL version declaration missing} "echo 'bad vcl' >${tmpdir}/t.vcl ; varnishd -C -f ${tmpdir}/t.vcl -n ${tmpdir} 2>&1"
 err_shell {-spersistent has been deprecated} "varnishd -spersistent 2>&1"



More information about the varnish-commit mailing list