summaryrefslogtreecommitdiffstats
path: root/scripts/deptest.sh
diff options
context:
space:
mode:
authorMichael Büsch <mb@bu3sch.de>2010-11-03 15:01:03 +0000
committerMichael Büsch <mb@bu3sch.de>2010-11-03 15:01:03 +0000
commitae6b08d22b6fc69f1e22ab82e9876f5abd9a50de (patch)
tree7a5e8c2634063105035161631d71617a1358c8f3 /scripts/deptest.sh
parent050902efd70bf8d4c88c8ce4124bd8cbe15548c7 (diff)
downloadmaster-31e0f0ae-ae6b08d22b6fc69f1e22ab82e9876f5abd9a50de.tar.gz
master-31e0f0ae-ae6b08d22b6fc69f1e22ab82e9876f5abd9a50de.tar.bz2
master-31e0f0ae-ae6b08d22b6fc69f1e22ab82e9876f5abd9a50de.zip
deptest: Add --force to force a test
SVN-Revision: 23826
Diffstat (limited to 'scripts/deptest.sh')
-rwxr-xr-xscripts/deptest.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/deptest.sh b/scripts/deptest.sh
index a0c3017c7d..4a3fd78ea3 100755
--- a/scripts/deptest.sh
+++ b/scripts/deptest.sh
@@ -36,6 +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
echo "PACKAGES are packages to test. If not specified, all installed packages"
echo "will be tested."
@@ -54,7 +55,8 @@ test_package() # $1=pkgname
local STAMP_FAILED="$STAMP_DIR_FAILED/$pkg"
local STAMP_BLACKLIST="$STAMP_DIR_BLACKLIST/$pkg"
rm -f "$STAMP_FAILED"
- [ -f "$STAMP_SUCCESS" ] && return
+ [ -f "$STAMP_SUCCESS" -a $force -eq 0 ] && return
+ rm -f "$STAMP_SUCCESS"
[ -n "$SELECTED" ] || {
echo "Package $pkg is not selected"
return
@@ -87,6 +89,7 @@ test_package() # $1=pkgname
# parse commandline options
packages=
lean_test=0
+force=0
while [ $# -ne 0 ]; do
case "$1" in
--help|-h)
@@ -96,6 +99,9 @@ while [ $# -ne 0 ]; do
--lean)
lean_test=1
;;
+ --force)
+ force=1
+ ;;
*)
packages="$packages $1"
;;