aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-devtools/yq/files/run-ptest
diff options
context:
space:
mode:
Diffstat (limited to 'recipes-devtools/yq/files/run-ptest')
-rwxr-xr-xrecipes-devtools/yq/files/run-ptest10
1 files changed, 10 insertions, 0 deletions
diff --git a/recipes-devtools/yq/files/run-ptest b/recipes-devtools/yq/files/run-ptest
new file mode 100755
index 00000000..3a6876b3
--- /dev/null
+++ b/recipes-devtools/yq/files/run-ptest
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+cd tests
+for i in `ls *.sh`; do
+ if [ ./$i ] ; then
+ echo "PASS: $i"
+ else
+ echo "FAIL: $i"
+ fi
+done