summaryrefslogtreecommitdiffstats
path: root/meta-multimedia/recipes-connectivity/gupnp/gupnp-av/run-ptest
diff options
context:
space:
mode:
Diffstat (limited to 'meta-multimedia/recipes-connectivity/gupnp/gupnp-av/run-ptest')
-rw-r--r--meta-multimedia/recipes-connectivity/gupnp/gupnp-av/run-ptest12
1 files changed, 12 insertions, 0 deletions
diff --git a/meta-multimedia/recipes-connectivity/gupnp/gupnp-av/run-ptest b/meta-multimedia/recipes-connectivity/gupnp/gupnp-av/run-ptest
new file mode 100644
index 0000000000..0f7504cd3b
--- /dev/null
+++ b/meta-multimedia/recipes-connectivity/gupnp/gupnp-av/run-ptest
@@ -0,0 +1,12 @@
1#!/bin/sh
2RET=0
3cd tests
4for t in $(find . -type f -executable); do
5 if ./$t; then
6 echo PASS: $t
7 else
8 echo FAIL: $t
9 RET=1
10 fi
11done
12exit $RET