'Nother patch from Larry to fix a buglet in how the line gets sed-ified.
Also, more testcases and comments on bugs and formatting differences in some
of the testcases.
diff --git a/tests/tester.sh b/tests/tester.sh
index 9209006..a767c6c 100755
--- a/tests/tester.sh
+++ b/tests/tester.sh
@@ -124,8 +124,8 @@
 				# line=${line//;/; $BUSYBOX }
 				# line=${line//|/| $BUSYBOX }
 				# assume $BUSYBOX has no commas
-				line=`echo $line | sed -e 's,;,; '$BUSYBOX, \
-				                       -e 's,|,| '$BUSYBOX,`
+				line=`echo "$line" | sed -e 's,;,; '$BUSYBOX, \
+				                       -e 's, |, | '$BUSYBOX,`
 
 				# execute line using busybox programs
 				[ $DEBUG -ge 2 ] && echo "testing: $line" | tee -a $LOGFILE