#!/bin/sh 

######################################################################
#
# Copyright (C) 1988, 1989, 1990, 1994 Steven B. Byrne.
# All rights reserved.
#
######################################################################

testSuite="class blocks array strings chars intmath floatmath"

for test in $testSuite
do
    echo "Testing ${test}..."
    ../gst -r ${test}.st > ${test}.log 2>&1
    diff ${test}.base ${test}.log
done
