# !/bin/sh
# 
#	This shell script will run the following XmString tests
#		StringComp
#		StringCopy
#		StringFree
#		StringEmpty
#	in that order, redirect the output to the file Strig.out.
#

echo ""
echo "Running the XmString tests."
echo "Output will be redirected to the file String.out."

echo "These are the results of the XmString tests:" > String.out
echo "" >> String.out
echo "" >> String.out

echo "	."
echo "---------- StringComp (testing the functions XmString[Byte]Compare()) ----------" >> String.out
echo "" >> String.out

StringComp >> String.out

echo "	."
echo "" >> String.out
echo "--------------- StringCopy (testing the function XmStringCopy()) ---------------" >> String.out
echo "" >> String.out

StringCopy >> String.out

echo "	."
echo "" >> String.out
echo "-------------- StringEmpty (testing the function XmStringEmpty()) --------------" >> String.out
echo "" >> String.out

StringEmpty >> String.out

echo "	."
echo "" >> String.out
echo "-------------- StringGLR (testing the function XmStringGetLtoR()) --------------" >> String.out
echo "" >> String.out

StringGLR >> String.out

echo "	."
echo "" >> String.out
echo "-------------- StringWidth (testing the function XmStringWidth) --------------" >> String.out
echo "" >> String.out

StringWidth >> String.out

echo "The XmString tests have completed."
echo ""

#
#  End Run script
#
