summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/ptest-runner/files/ptest-runner
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/ptest-runner/files/ptest-runner')
-rwxr-xr-xmeta/recipes-support/ptest-runner/files/ptest-runner54
1 files changed, 0 insertions, 54 deletions
diff --git a/meta/recipes-support/ptest-runner/files/ptest-runner b/meta/recipes-support/ptest-runner/files/ptest-runner
deleted file mode 100755
index 204cbdfc76..0000000000
--- a/meta/recipes-support/ptest-runner/files/ptest-runner
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/sh
-
-determine_ptests_to_run()
-{
- for libdir in /usr/lib*
- do
- [ ! -d "$libdir" ] && continue
-
- for x in `ls -d $libdir/*/ptest 2>/dev/null`
- do
- [ ! -f $x/run-ptest ] && continue
- [ -h `dirname $x` ] && continue
-
- #found a ptest in the system
- PTEST_FOUND=$(basename $(dirname $x))
-
- # when no pkg-names were specified, by default run each one
- if [[ -z $@ ]]; then
- printf " $x"
- else
- #check if this ptest has been asked for and add it
- if [[ $@ =~ $PTEST_FOUND ]]; then
- printf " $x"
- fi
- fi
- done
- done
-}
-
-run_ptests()
-{
- ANYFAILED=no
-
- #the paths were sanity-checked in determine_ptests_to_run()
- for ptst_path in $PTESTS_TO_RUN
- do
- date "+%Y-%m-%dT%H:%M"
- echo "BEGIN: $ptst_path"
- cd "$ptst_path"
- ./run-ptest || ANYFAILED=yes
- echo "END: $ptest_path"
- date "+%Y-%m-%dT%H:%M"
- done
-}
-
-echo "START: $0"
-PTESTS_TO_RUN=$(determine_ptests_to_run $@)
-run_ptests
-echo "STOP: $0"
-
-if [ "$ANYFAILED" = "yes" ]; then
- exit 1
-fi
-exit 0