summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-01-31 00:30:52 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:44:26 -0500
commitf7fb1e442ddd27917322069b3165cf3de340df00 (patch)
tree36022575ee484baa2c1f4a3ec1834a919a8bfe3f
parentbe2ad3d8d4a6593e59331b070658af647935e4f7 (diff)
downloadsamba-f7fb1e442ddd27917322069b3165cf3de340df00.tar.gz
samba-f7fb1e442ddd27917322069b3165cf3de340df00.tar.bz2
samba-f7fb1e442ddd27917322069b3165cf3de340df00.zip
r21066: Fix the build (uninitialised variable).
(This used to be commit 54b63787606f392e094fe28c2536999c34f76f44)
-rwxr-xr-xsource4/script/tests/test_local.sh14
-rw-r--r--source4/torture/torture.c1
2 files changed, 15 insertions, 0 deletions
diff --git a/source4/script/tests/test_local.sh b/source4/script/tests/test_local.sh
index 5994634418..0a8f9d6467 100755
--- a/source4/script/tests/test_local.sh
+++ b/source4/script/tests/test_local.sh
@@ -21,9 +21,23 @@ incdir=`dirname $0`
# the local tests don't need smbd
SMBD_TEST_FIFO=""
export SMBD_TEST_FIFO
+skipped="LOCAL-RESOLVE LOCAL-REGISTRY"
+
+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 "$*"
done
diff --git a/source4/torture/torture.c b/source4/torture/torture.c
index 4befd2c043..df25fdce74 100644
--- a/source4/torture/torture.c
+++ b/source4/torture/torture.c
@@ -48,6 +48,7 @@ struct torture_context *torture_context_init(TALLOC_CTX *mem_ctx,
struct torture_context *torture = talloc_zero(mem_ctx,
struct torture_context);
torture->ui_ops = ui_ops;
+ torture->returncode = true;
return torture;
}