diff options
Diffstat (limited to 'source3/script')
-rwxr-xr-x | source3/script/tests/test_net_s3.sh | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/source3/script/tests/test_net_s3.sh b/source3/script/tests/test_net_s3.sh deleted file mode 100755 index a0e83a65b1..0000000000 --- a/source3/script/tests/test_net_s3.sh +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh - -# tests for the "net" command - -test x"$TEST_FUNCTIONS_SH" != x"INCLUDED" && { -incdir=`dirname $0` -. $incdir/test_functions.sh -} - -failed=0 - -net_misc() { - echo "RUNNING SUBTESTS net_misc" - $SCRIPTDIR/test_net_misc.sh \ - || failed=`expr $failed + $?` -} - -net_registry() { - echo "RUNNING SUBTESTS net_registry" - $SCRIPTDIR/test_net_registry.sh \ - || failed=`expr $failed + $?` -} - -net_rpc_registry() { - echo "RUNNING SUBTESTS net_rpc_registry" - $SCRIPTDIR/test_net_registry.sh rpc \ - || failed=`expr $failed + $?` -} - -net_misc -net_registry -net_rpc_registry - -testok $0 $failed - |