aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2018-08-21 23:24:03 +0100
committerDavid Howells <dhowells@redhat.com>2018-08-21 23:24:03 +0100
commitd0fedbf9257a0fed18030527fd094588df5873aa (patch)
tree5928780e9a0c114d1f3e86d6adb5672f982ebd5b
parentb5a1510b53045ad81c365c960a6298c172faf3ce (diff)
downloadkeyutils-d0fedbf9257a0fed18030527fd094588df5873aa.tar.gz
TEST: Add a missing backslash
Add a missing backslash into a regular expression in the toolbox. Signed-off-by: David Howells <dhowells@redhat.com>
-rw-r--r--tests/toolbox.inc.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/toolbox.inc.sh b/tests/toolbox.inc.sh
index 140be66..0ce6db0 100644
--- a/tests/toolbox.inc.sh
+++ b/tests/toolbox.inc.sh
@@ -13,7 +13,7 @@
echo === $OUTPUTFILE ===
endian=`file -L /proc/$$/exe`
-if expr "$endian" : '.* MSB \+\(executable\|shared object).*' >&/dev/null
+if expr "$endian" : '.* MSB \+\(executable\|shared object\).*' >&/dev/null
then
endian=BE
elif expr "$endian" : '.* LSB \+\(executable\|shared object\).*' >&/dev/null