From: Ian Jackson Date: Sun, 25 Sep 2016 18:39:48 +0000 (+0100) Subject: Test suite: Add spelling test X-Git-Tag: archive/debian/2.0~137 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=commitdiff_plain;h=86c44593c1e834384749f81b89b99c5a865b4627 Test suite: Add spelling test Fail this test if the tree contains the misspelling of "pseudo". Signed-off-by: Ian Jackson --- diff --git a/debian/tests/control b/debian/tests/control index a3128617..e227e2b9 100644 --- a/debian/tests/control +++ b/debian/tests/control @@ -16,6 +16,11 @@ Tests-Directory: tests/tests Depends: dgit, dgit-infrastructure, devscripts, sbuild Restrictions: x-dgit-schroot-build +Tests: spelling +Tests-Directory: tests/tests +Depends: dgit, dgit-infrastructure, devscripts +Restrictions: x-dgit-git-only + Tests: build-modes build-modes-asplit build-modes-gbp-asplit clone-gitnosuite clone-nogit debpolicy-dbretry debpolicy-newreject debpolicy-quilt-gbp distropatches-reject drs-clone-nogit drs-push-masterupdate drs-push-rejects dsd-clone-nogit dsd-divert fetch-localgitonly fetch-somegit-notlast inarchivecopy newtag-clone-nogit oldtag-clone-nogit push-buildproductsdir push-newpackage push-nextdgit quilt quilt-gbp quilt-gbp-build-modes quilt-singlepatch rpush tag-updates test-list-uptodate trustingpolicy-replay Tests-Directory: tests/tests Depends: dgit, dgit-infrastructure, devscripts diff --git a/tests/tests/spelling b/tests/tests/spelling new file mode 100755 index 00000000..74541b7d --- /dev/null +++ b/tests/tests/spelling @@ -0,0 +1,16 @@ +#!/bin/bash +set -e +. tests/lib + +t-restrict x-dgit-git-only + +cd $root + +set +e +git grep -q -i 'ps[u]edo' +rc=$? +set -e + +test $rc = 1 + +echo ok.