1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

s3:selftest: handle spaces in test names

metze
This commit is contained in:
Stefan Metzmacher 2010-02-24 10:09:32 +01:00
parent 654f1147e1
commit 6346ec0c1c

View File

@ -41,7 +41,8 @@ plantest() {
normalize_testname() {
name=$1
shift 1
echo $name | tr "A-Z-" "a-z."
n=`echo $name | tr "A-Z-" "a-z."`
echo "$n $@"
}
TEST_FUNCTIONS_SH="INCLUDED"