diff options
author | Kamen Mazdrashki <kamen.mazdrashki@postpath.com> | 2009-10-25 22:43:04 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-11-06 14:05:41 +0100 |
commit | 3abe0ad7de11f22c7f4f3ddd8b6ffe8c06b9264f (patch) | |
tree | 9fe47c009914bafe3a90d6095f29de8fbcdf3a45 /source4/selftest | |
parent | 7a51b3adc2d1b69eb3f461959cadd392857d51d6 (diff) | |
download | samba-3abe0ad7de11f22c7f4f3ddd8b6ffe8c06b9264f.tar.gz samba-3abe0ad7de11f22c7f4f3ddd8b6ffe8c06b9264f.tar.bz2 samba-3abe0ad7de11f22c7f4f3ddd8b6ffe8c06b9264f.zip |
s4: DRS-RPC tests added to RPC group of tests
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source4/selftest')
-rwxr-xr-x | source4/selftest/tests.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source4/selftest/tests.sh b/source4/selftest/tests.sh index 427dcff360..75914a5eea 100755 --- a/source4/selftest/tests.sh +++ b/source4/selftest/tests.sh @@ -154,7 +154,10 @@ slow_ncacn_ip_tcp_tests="RPC-SAMR RPC-SAMR-PASSWORDS RPC-CRACKNAMES" all_tests="$ncalrpc_tests $ncacn_np_tests $ncacn_ip_tcp_tests $slow_ncalrpc_tests $slow_ncacn_np_tests $slow_ncacn_ip_tcp_tests RPC-LSA-SECRETS RPC-SAMBA3-SHARESEC RPC-COUNTCALLS" # Make sure all tests get run -for t in `$smb4torture --list | grep "^RPC-"` +rpc_tests=`$smb4torture --list | grep '^RPC-'` +drs_rpc_tests=`$smb4torture --list | grep '^DRS-RPC'` +rpc_tests_list="${rpc_tests} ${drs_rpc_tests}" +for t in $rpc_tests_list do echo $all_tests | grep "$t" > /dev/null if [ $? -ne 0 ] |