mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-09 06:11:43 +00:00
support testcase ssh2.sh Signed-off-by: Changqing Li <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
9 lines
267 B
Bash
9 lines
267 B
Bash
#!/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
|