diff options
author | Khem Raj <raj.khem@gmail.com> | 2025-07-13 11:46:13 +0200 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2025-07-13 14:41:31 -0400 |
commit | 88f1dc85d8c5d06a0bc4cdb473b97d2bddb3f52e (patch) | |
tree | 6a4b1499f7c8d0242c5330b643d10bc753d341b2 | |
parent | e8682e980316e909067214b5ccb4d6138bc92a34 (diff) | |
download | meta-openembedded-88f1dc85d8c5d06a0bc4cdb473b97d2bddb3f52e.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>
Signed-off-by: Peter Marko <peter.marko@siemens.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/poco/poco/run-ptest | 5 |
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 |
2 | while read runner; do | 2 | while 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 |
8 | done < testrunners | 8 | done < testrunners |
9 | |||