aboutsummaryrefslogtreecommitdiff
path: root/src/test/suite/runall
blob: d657e89497f6e2bac5e99184e293b3b52ce25ba3 (plain)
1
2
3
4
5
6
7
8
#!/bin/csh

foreach s (*.sql)
	echo "===> $s";
	psql -q -e -n $USER < $s >& $s.out;
	diff $s.out results/$s.out;
end