TEST = ../rtest -v

TESTFILES = \
BouncingBall.mos 


# test that currently fail. Move up when fixed. 
# Run make testfailing
FAILINGTESTFILES= 

.PHONY : test

test:
	@echo
	@echo Running tests...
	@echo
	@echo OPENMODELICAHOME=" $(OPENMODELICAHOME) "
	@$(TEST) $(TESTFILES)

failingtest :
	@echo
	@echo Running failing tests...
	@echo
	@$(TEST) $(FAILINGTESTFILES)
