From a61cd1d0fd642c45bc61ef52f09d8f62ce3976b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Tue, 24 May 2016 14:45:18 +0200 Subject: [PATCH] tests: Do not run 'cve' checker in 'tests/guix-lint.sh'. Reported by Malcolm, Cook . * tests/guix-lint.sh: Pass '-c synopsis,description' in first invocation so we don't run the 'cve' checker. --- tests/guix-lint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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