mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-06 03:10:01 +00:00
poco: Remove pushd/popd from run-ptest
This could be worked out without needing to add bash dependency Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -1,9 +1,8 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
while read runner; do
|
while read runner; do
|
||||||
pushd . >/dev/null
|
oldpath=`pwd` >/dev/null
|
||||||
cd bin
|
cd bin
|
||||||
echo Testing $runner
|
echo Testing $runner
|
||||||
./$runner-testrunner -all
|
./$runner-testrunner -all
|
||||||
popd >/dev/null
|
cd $oldpath >/dev/null
|
||||||
done < testrunners
|
done < testrunners
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user