mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-04-02 02:49:12 +00:00
This could be worked out without needing to add bash dependency Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
9 lines
163 B
Bash
9 lines
163 B
Bash
#!/bin/sh
|
|
while read runner; do
|
|
oldpath=`pwd` >/dev/null
|
|
cd bin
|
|
echo Testing $runner
|
|
./$runner-testrunner -all
|
|
cd $oldpath >/dev/null
|
|
done < testrunners
|