From b58deeea692fc28827e249f0fc4a9d39263a4095 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 16 Oct 2006 23:09:15 +0000 Subject: r19350: Properly list LOCAL-TALLOC under the "LOCAL" header. Support directories for subcategories in tests. Several small other fixes. (This used to be commit bde00d97068d559b025ab131ff698a82430d14b3) --- source4/script/uninstalltorture.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 source4/script/uninstalltorture.sh (limited to 'source4/script/uninstalltorture.sh') diff --git a/source4/script/uninstalltorture.sh b/source4/script/uninstalltorture.sh new file mode 100755 index 0000000000..0c6e4ec991 --- /dev/null +++ b/source4/script/uninstalltorture.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +TORTUREDIR=$1 +shift +shift + +for p in $*; do + p2=`dirname $p` + base=`basename $p` + DESTDIR=$TORTUREDIR/`basename $p2` + echo Removing $DESTDIR/$base + rm -f $p $DESTDIR/ +done + +exit 0 -- cgit