summaryrefslogtreecommitdiff
path: root/tests/guix-lint.sh
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2016-05-24 14:45:18 +0200
committerLudovic Courtès <ludo@gnu.org>2016-05-24 14:45:18 +0200
commita61cd1d0fd642c45bc61ef52f09d8f62ce3976b8 (patch)
treefa343335eb682ebabfef3f27460c2c94da9e76bc /tests/guix-lint.sh
parent493e9a5a8f613764cfa396c33ee6cb381b0dbbef (diff)
downloadpatches-a61cd1d0fd642c45bc61ef52f09d8f62ce3976b8.tar
patches-a61cd1d0fd642c45bc61ef52f09d8f62ce3976b8.tar.gz
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.
Diffstat (limited to 'tests/guix-lint.sh')
-rw-r--r--tests/guix-lint.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/guix-lint.sh b/tests/guix-lint.sh
index c105521ec7..7ddc7c265b 100644
--- a/tests/guix-lint.sh
+++ b/tests/guix-lint.sh
@@ -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