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


TESTFILES = \
DIC_FMU2_CPP.mos \
exposeLocalIOs.mos \
exposeLocalIOsArray.mos \
solveOneNonlinearEquationTest.mos \
testArrayEquations.mos \
testFMU2MatrixIO.mos \
testModelDescription.mos \
testClockDescription.mos \
testCSTR.mos \
testDrumBoiler.mos \
ticket6296.mos \
testCombiTable2D.mos

FAILINGTESTFILES = \
Crane_FMU2_CPP.mos \
CoupledClutches_FMU2_CPP.mos

DEPENDENCIES = \
*.mo \
*.mos \
Makefile


CLEAN = `ls | grep -w -v -f deps.tmp`

.PHONY : test testAll clean getdeps failingtest

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

clean :
	@echo $(DEPENDENCIES) | sed 's/ /\\|/g' > deps.tmp
	@rm -rf $(CLEAN)
	@rm -f *_me_FMU.mo

getdeps:
	@echo $(DEPENDENCIES) | sed 's/ /\\|/g' > deps.tmp
	@echo $(CLEAN) | sed -r 's/deps.txt|deps.tmp//g' | sed 's/ / \\\n/g' > deps.txt
	@echo Dependency list saved in deps.txt.
	@echo Copy the list from deps.txt and add it to the Makefile @DEPENDENCIES

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