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