TESTS=exit1 hello loop loop2 fun fun2 fun3 fun4
TESTS+=nest nest2 nest3

#ARG PASSING ERR
TESTS+=fun5 fun6

#INVALID SYNTAX
#TESTS+=looptail

include ../../config.mk

BINDEPS=r_egg r_asm r_parse r_syscall r_db r_util r_lib
BIN=test
OBJ=test.o

.PHONY: t

t tests:
	@for a in ${TESTS} ; do sh t-$$a.sh ; done

myclean:
	rm -f test${EXT_EXE} test.o

include ../../rules.mk
