1#! /bin/sh
2
3set -e
4
5tests="minc_types icv_range icv icv_dim icv_dim1 icv_fillvalue"
6
7for test in $tests;
8do
9   echo Testing $test
10   ./$test > junk.out
11   diff $srcdir/$test.out junk.out && rm junk.out
12
13done
14
15