summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVishal Bhoj <vishal.bhoj@linaro.org>2016-03-07 11:04:32 +0700
committerVishal Bhoj <vishal.bhoj@linaro.org>2016-03-07 11:04:32 +0700
commitbd37fa23256aab1c235319f5ce572f0e4a654d69 (patch)
treeea32a57453d43516c0894d8b963733629292a8a4
parent9f29cafe9833d683e84274eef2aacdb1fa6d124a (diff)
test-art-host-test: Fix parser
Signed-off-by: Vishal Bhoj <vishal.bhoj@linaro.org>
-rwxr-xr-xtest-art-host-test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-art-host-test.sh b/test-art-host-test.sh
index b8dd0c9..224ba1d 100755
--- a/test-art-host-test.sh
+++ b/test-art-host-test.sh
@@ -31,7 +31,7 @@ if [[ $? -ne 0 ]]; then
cat $WORKSPACE/build-logs.txt
cat $WORKSPACE/build-logs.txt | grep -i "FAILED!" > $WORKSPACE/failed-test.txt
grep " FAILED" $WORKSPACE/build-logs.txt | grep "^test" | sed -e "s/ FAILED//g" | grep gtest >> $WORKSPACE/failed-test.txt
- grep "\[91mFAILED" $WORKSPACE/build-logs.txt | grep "^test" | sed -e "s/ .*//g" | grep gtest >>$WORKSPACE/failed-test.txt
+ grep "\[91mFAILED" $WORKSPACE/build-logs.txt | grep "^test" | sed -e "s/ .*//g" >> $WORKSPACE/failed-test.txt
sed -i "s/.*test\///g" $WORKSPACE/failed-test.txt
sed -i "s/: FAILED\!//g" $WORKSPACE/failed-test.txt
IFS=';' read -r -a ignored_tests <<< $CURRENT_FAILING_ART_TESTS