mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-08-17 13:12:03 +00:00
One of the ptest was failing as it was missing an RDEPENDS for its test on documentation. Signed-off-by: Sakib Sajal <sakib.sajal@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
9 lines
245 B
Bash
9 lines
245 B
Bash
#!/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
|