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

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