TEST = ../../../rtest -v

TESTFILES = \
GyroscopicEffects.mos \
ActuatedDrive.mos \
MovingActuatedDrive.mos \
GearConstraint.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)
