summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/ptest-runner
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/ptest-runner')
-rw-r--r--meta/recipes-support/ptest-runner/files/ptest-runner8
1 files changed, 6 insertions, 2 deletions
diff --git a/meta/recipes-support/ptest-runner/files/ptest-runner b/meta/recipes-support/ptest-runner/files/ptest-runner
index 33424134c5..c618f1148d 100644
--- a/meta/recipes-support/ptest-runner/files/ptest-runner
+++ b/meta/recipes-support/ptest-runner/files/ptest-runner
@@ -1,5 +1,5 @@
1#!/bin/sh 1#!/bin/sh
2 2ANYFAILED=no
3echo "START: $0" 3echo "START: $0"
4 4
5for libdir in /usr/lib* 5for libdir in /usr/lib*
@@ -15,9 +15,13 @@ do
15 date "+%Y-%m-%dT%H:%M" 15 date "+%Y-%m-%dT%H:%M"
16 echo "BEGIN: $x" 16 echo "BEGIN: $x"
17 cd "$x" 17 cd "$x"
18 ./run-ptest 18 ./run-ptest || ANYFAILED=yes
19 echo "END: $x" 19 echo "END: $x"
20 date "+%Y-%m-%dT%H:%M" 20 date "+%Y-%m-%dT%H:%M"
21 done 21 done
22done 22done
23echo "STOP: $0" 23echo "STOP: $0"
24if [ "$ANYFAILED" = "yes" ]; then
25 exit 1
26fi
27exit 0