xref: /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/poco/poco/run-ptest (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1#!/bin/sh
2while read runner; do
3  pushd . >/dev/null
4  cd bin
5  echo Testing $runner
6  ./$runner-testrunner -all
7  popd >/dev/null
8done < testrunners
9
10