1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-12 21:58:10 +03:00

r25459: Avoid bashism. Reported by Björn Jacke.

(This used to be commit a03e09b878ad455facbb8ff47207bc5534fa9aca)
This commit is contained in:
Jelmer Vernooij 2007-10-02 10:50:42 +00:00 committed by Gerald (Jerry) Carter
parent 1da3555488
commit 569903dd0c

@ -17,7 +17,8 @@ all_tests="$ncalrpc_tests $ncacn_np_tests $ncacn_ip_tcp_tests $slow_ncalrpc_test
# Make sure all tests get run
for t in `$samba4bindir/smbtorture --list | grep "^RPC-"`
do
if ! echo $all_tests | grep $t > /dev/null
echo $all_tests | grep $t > /dev/null
if [ $? -ne 0 ]
then
auto_rpc_tests="$auto_rpc_tests $t"
fi