# cd ./gen/classes/ \rm -f test.output setenv TEST /proj/lieber2/stelios/testcases echo " DEFINITION TEST" >> test.output foreach file ($TEST/definition/test*.input) echo " TEST BEGIN " >> test.output echo $file >>test.output echo $cwd echo $file java Main <$file >> test.output echo " NEXT TEST " >> test.output end echo " INHERITANCE CYCLE TEST" >> test.output foreach file ($TEST/inheritanceCycle/test*.input) echo " TEST BEGIN " >> test.output echo $file >>test.output echo $cwd echo $file java Main <$file >> test.output echo " NEXT TEST " >> test.output end echo " MULTIPLE INHERITANCE TEST" >> test.output foreach file ($TEST/inheritanceSingle/test*.input) echo " TEST BEGIN " >> test.output echo $file >>test.output echo $cwd echo $file java Main <$file >> test.output echo " NEXT TEST " >> test.output end echo " UNIQUE PARTS TEST" >> test.output foreach file ($TEST/unique/test*.input) echo " TEST BEGIN " >> test.output echo $file >>test.output echo $cwd echo $file java Main <$file >> test.output echo " NEXT TEST " >> test.output end echo " TBR TEST" >> test.output foreach file ($TEST/terminal/test*.input) echo " TEST BEGIN " >> test.output echo $file >>test.output echo $cwd echo $file java Main <$file >> test.output echo " NEXT TEST " >> test.output end echo " FLATTEN TEST" >> test.output foreach file ($TEST/flatten/test*.input) echo " TEST BEGIN " >> test.output echo $file >>test.output echo $cwd echo $file java Main <$file >> test.output echo " NEXT TEST " >> test.output end echo " FINAL TEST " echo " FINAL TEST " >> test.output java Main <$TEST/general/final.input >> test.output cp test.output ../../ cd ../../