summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2023-04-02 21:57:05 -0700
committerKhem Raj <raj.khem@gmail.com>2023-04-04 13:39:46 -0700
commit9357ea2698d5d17837b4b4ce13862bfca979a2ce (patch)
tree514632ba160cefd9caba459df8af3bbde565735e
parent90589558e97928f66e05e7600fa4a933810febb9 (diff)
downloadmeta-openembedded-9357ea2698d5d17837b4b4ce13862bfca979a2ce.tar.gz
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>
-rw-r--r--meta-oe/recipes-support/poco/poco/run-ptest5
1 files changed, 2 insertions, 3 deletions
diff --git a/meta-oe/recipes-support/poco/poco/run-ptest b/meta-oe/recipes-support/poco/poco/run-ptest
index c479f7ac10..c9896eadee 100644
--- a/meta-oe/recipes-support/poco/poco/run-ptest
+++ b/meta-oe/recipes-support/poco/poco/run-ptest
@@ -1,9 +1,8 @@
1#!/bin/sh 1#!/bin/sh
2while read runner; do 2while read runner; do
3 pushd . >/dev/null 3 oldpath=`pwd` >/dev/null
4 cd bin 4 cd bin
5 echo Testing $runner 5 echo Testing $runner
6 ./$runner-testrunner -all 6 ./$runner-testrunner -all
7 popd >/dev/null 7 cd $oldpath >/dev/null
8done < testrunners 8done < testrunners
9