~ruther/guix-local

a61cd1d0fd642c45bc61ef52f09d8f62ce3976b8 — Ludovic Courtès 10 years ago 493e9a5
tests: Do not run 'cve' checker in 'tests/guix-lint.sh'.

Reported by Malcolm, Cook <MEC@stowers.org>.

* tests/guix-lint.sh: Pass '-c synopsis,description' in first invocation
so we don't run the 'cve' checker.
1 files changed, 1 insertions(+), 1 deletions(-)

M tests/guix-lint.sh
M tests/guix-lint.sh => tests/guix-lint.sh +1 -1
@@ 54,7 54,7 @@ grep_warning ()
# 2) the synopsis starts with a lower-case letter;
# 3) the description has a single space following the end-of-sentence period.

out=`guix lint dummy 2>&1`
out=`guix lint -c synopsis,description dummy 2>&1`
if [ `grep_warning "$out"` -ne 3 ]
then false; else true; fi