From 32dd550d1958cea0af8bfde6cb306f8a13246eb5 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Fri, 26 Jan 2007 13:43:21 +0000 Subject: r21030: whoops, fix incorrect regex (This used to be commit 2c6cc617f9cc84c1cd9f6652d3a8ac9c605ab42c) --- source4/script/tests/test_posix.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'source4/script/tests/test_posix.sh') diff --git a/source4/script/tests/test_posix.sh b/source4/script/tests/test_posix.sh index ccd0d196b1..2e11fa0ace 100755 --- a/source4/script/tests/test_posix.sh +++ b/source4/script/tests/test_posix.sh @@ -20,7 +20,10 @@ ADDARGS="$*" incdir=`dirname $0` . $incdir/test_functions.sh -tests=`bin/smbtorture --list | grep "^(BASE|RAW|SMB2)-" | xargs` +smb2=`bin/smbtorture --list | grep "^SMB2-" | xargs` +raw=`bin/smbtorture --list | grep "^RAW-" | xargs` +base=`bin/smbtorture --list | grep "^BASE-" | xargs` +tests="$base $raw $smb2" # # please add tests you want to be skipped here! -- cgit