summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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