mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-18 05:01:58 +02:00
Signed-off-by: Pascal Bach <pascal.bach@siemens.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
10 lines
151 B
Bash
10 lines
151 B
Bash
#!/bin/sh
|
|
while read runner; do
|
|
pushd . >/dev/null
|
|
cd bin
|
|
echo Testing $runner
|
|
./$runner-testrunner -all
|
|
popd >/dev/null
|
|
done < testrunners
|
|
|