The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/bin/csh
echo "Test A1 - Testing if P tags are getting removed.";
echo "Running prepare_sval2.pl test-A1.data";
prepare_sval2.pl test-A1.data > test-A1.output
sort test-A1.output > t0
sort test-A1.reqd > t1
diff -w t0 t1 > v1
if(-z v1) then
	echo "Test A1 OK";
else
	echo "Test A1 ERROR";
	cat v1
endif
/bin/rm -f t0 t1 v1 test-A1.output