[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: tests: Do not run 'cve' checker in 'tests/guix-lint.sh'.
From: |
Ludovic Courtès |
Subject: |
01/01: tests: Do not run 'cve' checker in 'tests/guix-lint.sh'. |
Date: |
Tue, 24 May 2016 12:46:32 +0000 (UTC) |
civodul pushed a commit to branch master
in repository guix.
commit a61cd1d0fd642c45bc61ef52f09d8f62ce3976b8
Author: Ludovic Courtès <address@hidden>
Date: Tue May 24 14:45:18 2016 +0200
tests: Do not run 'cve' checker in 'tests/guix-lint.sh'.
Reported by Malcolm, Cook <address@hidden>.
* 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 c105521..7ddc7c2 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