# !/bin/sh
# 
#	This shell script will run all tests in the tests/uil/ForRef directory.
#
#	forward reference tests
#
displayUid ForRef2
displayUid ForRef3
displayUid ForRef4
#
#	This shell portion will run each of the UIL Forward Reference tests
#	and redirect the output to the file 'for_ref.out'
#
echo ""
echo "Running UIL Forward Reference tests."
echo "Output will be redirected to the file for_ref.out."

echo "These are the results of the UIL Data Structures tests:" > for_ref.out
echo "" >> for_ref.out
echo "" >> for_ref.out

ForRef >> for_ref.out

echo "UIL Forward Reference tests have completed."
echo ""
#
#
#  End of Test script
