summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libssh2/files/run-ptest
blob: 9e2fce2d24a791701d19ddaf1e845484ec81ad71 (plain)
1
2
3
4
5
6
7
8
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