Commit 32ea9c59 authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

vtc: Flip the feature check in v4

In order to run the test we want to NOT be using gcov, so we should test
that the environment variable is empty. In theory that should mean that
GCOV runs should currently fail since the feature check is currently
backwards so I may revert this change if that suddenly happens.

I find `test -z ...` more readable than `[ -z ... ]` in this context, so
if it comes to a revert, I will keep the test(1) syntax.
parent 2b63ee2d
......@@ -3,7 +3,7 @@ varnishtest "test if our default paramers make sense ..."
feature 64bit
# Skip this test in GCOV mode, 68xx bytes extra per level makes it fail
feature cmd {[ -n "$GCOV_PROG" ]}
feature cmd {test -z "$GCOV_PROG"}
# ... for our definition of a standard use case:
# - 2019 header madness
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment