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

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