summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libssh2/files/run-ptest
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-support/libssh2/files/run-ptest')
-rw-r--r--meta/recipes-support/libssh2/files/run-ptest9
1 files changed, 9 insertions, 0 deletions
diff --git a/meta/recipes-support/libssh2/files/run-ptest b/meta/recipes-support/libssh2/files/run-ptest
new file mode 100644
index 0000000000..9e2fce2d24
--- /dev/null
+++ b/meta/recipes-support/libssh2/files/run-ptest
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+ptestdir=$(dirname "$(readlink -f "$0")")
+cd tests
+# omit ssh2.sh until https://github.com/libssh2/libssh2/issues/630 is fixed
+for test in simple mansyntax.sh
+do
+ ./../test-driver --test-name $test --log-file ../$test.log --trs-file ../$test.trs --color-tests no --enable-hard-errors yes --expect-failure no -- ./$test
+done