summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/bre.awk2
-rw-r--r--tests/ere.awk2
-rw-r--r--tests/spencer1.awk2
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/bre.awk b/tests/bre.awk
index 5d68e0cb..9c9fef82 100644
--- a/tests/bre.awk
+++ b/tests/bre.awk
@@ -8,7 +8,7 @@ BEGIN {
$0 ~ /^#/ { next; }
NF == 3 {
- printf ("status=`echo '%s' | { ${GREP} -e '%s' > /dev/null 2>&1; echo $?; cat >/dev/null; }\n",$3, $2);
+ printf ("status=`echo '%s' | { ${GREP} -e '%s' > /dev/null 2>&1; echo $?; cat >/dev/null; }`\n",$3, $2);
printf ("if test $status -ne %s ; then\n", $1);
printf ("\techo Spencer bre test \\#%d failed\n", ++n);
printf ("\tfailures=1\n");
diff --git a/tests/ere.awk b/tests/ere.awk
index 68a157c7..8f6a5b59 100644
--- a/tests/ere.awk
+++ b/tests/ere.awk
@@ -8,7 +8,7 @@ BEGIN {
$0 ~ /^#/ { next; }
NF == 3 {
- printf ("status=`echo '%s' | { ${GREP} -E -e '%s' > /dev/null 2>&1; echo $?; cat >/dev/null; } `\n",$3, $2);
+ printf ("status=`echo '%s' | { ${GREP} -E -e '%s' > /dev/null 2>&1; echo $?; cat >/dev/null; }`\n",$3, $2);
printf ("if test $status -ne %s ; then\n", $1);
printf ("\techo Spencer ere test \\#%d failed\n", ++n);
printf ("\tfailures=1\n");
diff --git a/tests/spencer1.awk b/tests/spencer1.awk
index 00df0f9c..70c6118e 100644
--- a/tests/spencer1.awk
+++ b/tests/spencer1.awk
@@ -4,7 +4,7 @@ BEGIN {
}
$0 !~ /^#/ && NF = 3 {
- printf ("status=`echo '%s'| { ${GREP} -E -e '%s' > /dev/null 2>&1; echo $?; cat >/dev/null; }\n",$3, $2);
+ printf ("status=`echo '%s'| { ${GREP} -E -e '%s' > /dev/null 2>&1; echo $?; cat >/dev/null; }`\n",$3, $2);
printf ("if test $status -ne %s ; then\n", $1);
printf ("\techo Spencer test \\#%d failed\n", ++n);
printf ("\tfailures=1\n");