summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/libssh2/files/run-ptest
blob: 5fd7ec65f6b8d51d33f010dded46d46d7d7ce73d (plain)
1
2
3
4
5
6
7
8
#!/bin/sh

ptestdir=$(dirname "$(readlink -f "$0")")
cd tests
for test in simple ssh2.sh 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