# !/bin/sh
# 
#	This shell script will run the XmFontList tests FontListC and
#       FontListA, in that order, redirect the output to the file FontList.out.
#

echo ""
echo "Running the XmFontList tests FontListC and FontListA."
echo "Output will be redirected to the file FontList.out."

echo "These are the results of the XmFontList tests:" > FontList.out
echo "" >> FontList.out
echo "" >> FontList.out

echo "	."
echo "-------------- FontListC (testing the function XmFontListCreate()) -------------" >> FontList.out
echo "" >> FontList.out

FontListC >> FontList.out

echo "	."
echo "" >> FontList.out
echo "--------------- FontListA (testing the function XmFontListAdd()) ---------------" >> FontList.out
echo "" >> FontList.out

FontListA >> FontList.out

echo "The XmFontList tests have completed."
echo ""

#
#  End Run script
#
