1eb8dc403SDave Cobbley#!/bin/sh
2eb8dc403SDave Cobbleywhile read runner; do
38e7b46e2SPatrick Williams  oldpath=`pwd` >/dev/null
4eb8dc403SDave Cobbley  cd bin
5eb8dc403SDave Cobbley  echo Testing $runner
6*2a25492cSPatrick Williams  ./$runner -ignore $oldpath/cppignore.lnx -all
78e7b46e2SPatrick Williams  cd $oldpath >/dev/null
8eb8dc403SDave Cobbleydone < testrunners
9