mirror of
git://git.yoctoproject.org/poky
synced 2026-09-09 06:16:05 +00:00
(From OE-Core rev: 0a4275e61ec719247ddd1df5950ad570e8d3af02) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
10 lines
335 B
Bash
10 lines
335 B
Bash
#!/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
|