summaryrefslogtreecommitdiffstats
path: root/test/etc
diff options
context:
space:
mode:
authorAndreas Gampe <agampe@google.com>2014-09-15 09:40:03 -0700
committerAndreas Gampe <agampe@google.com>2014-09-15 09:40:03 -0700
commit441336c4ac72edaec6381e5c5739132ee4064b84 (patch)
tree5b2fe0fe53902c596f6c751fe9c86cc3ccf76037 /test/etc
parent56369897d662ea63ea5ed57ae36af0ae0fa1452d (diff)
downloadart-441336c4ac72edaec6381e5c5739132ee4064b84.zip
art-441336c4ac72edaec6381e5c5739132ee4064b84.tar.gz
art-441336c4ac72edaec6381e5c5739132ee4064b84.tar.bz2
ART: Update host run test script
Widen the regex filtering libsigchain preload message. Change-Id: I75f7ed45109330242bd1e20a43dd7149588b8c9a
Diffstat (limited to 'test/etc')
-rwxr-xr-xtest/etc/host-run-test-jar2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/etc/host-run-test-jar b/test/etc/host-run-test-jar
index 36290f4..d2b3fb1 100755
--- a/test/etc/host-run-test-jar
+++ b/test/etc/host-run-test-jar
@@ -229,7 +229,7 @@ else
# If we are execing /bin/false we might not be on the same ISA as libsigchain.so
# ld.so will helpfully warn us of this. Unfortunately this messes up our error
# checking so we will just filter out the error with a grep.
- LD_PRELOAD=libsigchain.so $cmdline "$@" 2>&1 | grep -v -E "^ERROR: ld\.so: object '.+\.so' from LD_PRELOAD cannot be preloaded: ignored\.$"
+ LD_PRELOAD=libsigchain.so $cmdline "$@" 2>&1 | grep -v -E "^ERROR: ld\.so: object '.+\.so' from LD_PRELOAD cannot be preloaded.*: ignored\.$"
# Add extra detail if time out is enabled.
if [ ${PIPESTATUS[0]} = 124 ] && [ "$TIME_OUT" = "y" ]; then
echo -e "\e[91mTEST TIMED OUT!\e[0m" >&2