#  Test the function Quadruple_Factorial(), Quadruple_Factorial_Max_Arg(),
#  and xQuadruple_Factorial() in the file quadruple_factorial.c.           
#
#  Dependent on: (none)
#
#  After downloading change permissions: chmod 744 testquadruplefactorial.sh 
#  Execute as ./testquadruplefactorial.sh (unless your profile has a PATH set
#                                          to this directory)

# Change! if quadruple_factorial.c is in a different directory.
gcc -c -o a.o quadruple_factorial.c

# Change! if testquadruplefactorial.c is in a different directory.
gcc -o cvers testquadruplefactorial.c a.o -lm

# Change! if you profile has a PATH set to this directory or you
# want to change the name of the output file.

./cvers > QuadrupleFactorialTest.txt

# Delete temporary files.
rm cvers
rm a.o

