summaryrefslogtreecommitdiffstats
path: root/scripts/deptest.sh
diff options
context:
space:
mode:
authorMichael Büsch <mb@bu3sch.de>2010-11-03 15:18:53 +0000
committerMichael Büsch <mb@bu3sch.de>2010-11-03 15:18:53 +0000
commit55081c6a197789823d03f6c16a47312407c611da (patch)
treec027651514ae32c89f20c0f13ef3cd765c8ce7e8 /scripts/deptest.sh
parentae6b08d22b6fc69f1e22ab82e9876f5abd9a50de (diff)
downloadmaster-31e0f0ae-55081c6a197789823d03f6c16a47312407c611da.tar.gz
master-31e0f0ae-55081c6a197789823d03f6c16a47312407c611da.tar.bz2
master-31e0f0ae-55081c6a197789823d03f6c16a47312407c611da.zip
deptest: --force also overrides blacklist stamps
SVN-Revision: 23827
Diffstat (limited to 'scripts/deptest.sh')
-rwxr-xr-xscripts/deptest.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/deptest.sh b/scripts/deptest.sh
index 4a3fd78ea3..953cdbf734 100755
--- a/scripts/deptest.sh
+++ b/scripts/deptest.sh
@@ -36,7 +36,7 @@ usage()
echo "OPTIONS:"
echo " --lean Run a lean test. Do not clean the build directory for each"
echo " package test."
- echo " --force Force a test, even if a success stamp is available"
+ echo " --force Force a test, even if a success/blacklist stamp is available"
echo
echo "PACKAGES are packages to test. If not specified, all installed packages"
echo "will be tested."
@@ -61,7 +61,7 @@ test_package() # $1=pkgname
echo "Package $pkg is not selected"
return
}
- [ -f "$STAMP_BLACKLIST" ] && {
+ [ -f "$STAMP_BLACKLIST" -a $force -eq 0 ] && {
echo "Package $pkg is blacklisted"
return
}