summaryrefslogtreecommitdiff
path: root/source4/script/tests/test_local.sh
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-03-05 22:24:21 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:49:16 -0500
commit804ac30704ddbedb3eb6decfa1e448e62ac914d3 (patch)
treeae495e752847adad456476edf9a598730e803cca /source4/script/tests/test_local.sh
parent72d88d158a6e82392116bab09ce8704115072d07 (diff)
downloadsamba-804ac30704ddbedb3eb6decfa1e448e62ac914d3.tar.gz
samba-804ac30704ddbedb3eb6decfa1e448e62ac914d3.tar.bz2
samba-804ac30704ddbedb3eb6decfa1e448e62ac914d3.zip
r21709: Add a list of tests that should be skipped rather than ad-hoc test skipping in various places.
(This used to be commit 01befd52111b8c183d78f9e0d80065fe0825b87c)
Diffstat (limited to 'source4/script/tests/test_local.sh')
-rwxr-xr-xsource4/script/tests/test_local.sh17
1 files changed, 1 insertions, 16 deletions
diff --git a/source4/script/tests/test_local.sh b/source4/script/tests/test_local.sh
index 6a96987b9c..2751c73b11 100755
--- a/source4/script/tests/test_local.sh
+++ b/source4/script/tests/test_local.sh
@@ -21,25 +21,10 @@ incdir=`dirname $0`
# the local tests don't need smbd
SMBD_TEST_FIFO=""
export SMBD_TEST_FIFO
-skipped="LOCAL-RESOLVE"
-
-echo "WARNING: Skipping $skipped"
failed=0
for t in $local_tests; do
- skip=0
- for s in $skipped; do
- if [ x"$s" = x"$t" ]; then
- skip=1;
- break;
- fi
- done
- if [ $skip = 1 ]; then
- continue;
- fi
-
- name="$t"
- testit "$name" $VALGRIND bin/smbtorture $TORTURE_OPTIONS ncalrpc: $t "$*"
+ testit "$t" $VALGRIND bin/smbtorture $TORTURE_OPTIONS ncalrpc: $t "$*"
done
testok $0 $failed