From 544759df3281bd420e22bdc7ca3cdb136217b620 Mon Sep 17 00:00:00 2001 From: Albert Cheng Date: Thu, 6 Sep 2001 00:27:40 -0500 Subject: [svn-r4428] Purpose: Bug fix Description: The previous coding using sed was not portable for all Unix systems. Much easier to use 'cut' to parse the strings. Platforms tested: eirene --- bin/runtest | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/runtest b/bin/runtest index 9531e98..6019d9d 100755 --- a/bin/runtest +++ b/bin/runtest @@ -371,7 +371,11 @@ SNAPTEST_CONFIG_PARSE() { while read x y ; do # Scan for entry for this weekday. - x=`echo $x | sed -e s%^$WEEKDAY/%%` + xd=`echo $x | cut -f1 -d/` + if [ "$xd" = ${WEEKDAY} ]; then + # strip away the weekday/ part. + x=`echo $x | cut -f2 -d/` + fi case "$x" in '#'*) # comment. Continue. -- cgit v0.12