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:
Khem Raj 2023-04-02 21:57:05 -07:00
parent 90589558e9
commit 9357ea2698

View File

@ -1,9 +1,8 @@
#!/bin/sh
while read runner; do
pushd . >/dev/null
oldpath=`pwd` >/dev/null
cd bin
echo Testing $runner
./$runner-testrunner -all
popd >/dev/null
cd $oldpath >/dev/null
done < testrunners