Files
meta-openembedded/meta-oe/recipes-support/libssh2/files/run-ptest
Sakib Sajal f5df715e2c libssh2: enable ptest
Signed-off-by: Sakib Sajal <sakib.sajal@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
2020-09-22 10:19:13 -07:00

8 lines
249 B
Bash

#!/bin/sh
ptestdir=$(dirname "$(readlink -f "$0")")
for test in $(ls $ptestdir/tests)
do
./test-driver --test-name $test --log-file $test.log --trs-file $test.trs --color-tests no --enable-hard-errors yes --expect-failure no -- ./tests/$test
done