summaryrefslogtreecommitdiff
path: root/tests
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
parent493e9a5a8f613764cfa396c33ee6cb381b0dbbef (diff)
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')
-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 c105521ec73..7ddc7c265bc 100644
--- a/tests/guix-lint.sh
+++ b/tests/guix-lint.sh
@@ -54,7 +54,7 @@ grep_warning ()
54# 2) the synopsis starts with a lower-case letter; 54# 2) the synopsis starts with a lower-case letter;
55# 3) the description has a single space following the end-of-sentence period. 55# 3) the description has a single space following the end-of-sentence period.
56 56
57out=`guix lint dummy 2>&1` 57out=`guix lint -c synopsis,description dummy 2>&1`
58if [ `grep_warning "$out"` -ne 3 ] 58if [ `grep_warning "$out"` -ne 3 ]
59then false; else true; fi 59then false; else true; fi
60 60