When setting an environment variable by piping something into grep, backquotes
can be useful.  Also tweak an if case to be more portable.
diff --git a/testsuite/testing.sh b/testsuite/testing.sh
index c1002a6..f16f4c7 100755
--- a/testsuite/testing.sh
+++ b/testsuite/testing.sh
@@ -42,9 +42,9 @@
 
 optional()
 {
-  option="$OPTIONFLAGS" | egrep "(^|:)$1(:|\$)"
+  option=`echo "$OPTIONFLAGS" | egrep "(^|:)$1(:|\$)"`
   # Not set?
-  if [[ -z "$1" || -z "$OPTIONFLAGS" || ${#option} -ne 0 ]]
+  if [ -z "$1" ] || [ -z "$OPTIONFLAGS" ] || [ ${#option} -ne 0 ]
   then
     SKIP=""
     return