summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/beecrypt/beecrypt/run-ptest
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/beecrypt/beecrypt/run-ptest')
-rw-r--r--meta/recipes-support/beecrypt/beecrypt/run-ptest5
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-support/beecrypt/beecrypt/run-ptest b/meta/recipes-support/beecrypt/beecrypt/run-ptest
new file mode 100644
index 0000000000..2ee294d991
--- /dev/null
+++ b/meta/recipes-support/beecrypt/beecrypt/run-ptest
@@ -0,0 +1,5 @@
1#!/bin/sh
2
3cd tests
4for i in `ls`; do ./$i; if [ $? -eq 0 ]; then echo "PASS: $i"; \
5 else echo "FAIL: $i"; fi; done