blob: 0ca8e3ff108eeafe9188093def44149b6280ab22 [file] [log] [blame]
Emeric Vigier2f625822012-08-06 11:09:52 -04001#!/bin/sh
2
3# execute all test to make a single output
4
5for t in bug1 bug2 thread1 digest tcpstr1 url1; do
6 echo $t test...
7 echo $t test... 1>&2
8 ./$t
9 if [ $? != 0 ]; then
10 echo Exit with error from $t
11 fi
12done
13