Skip to content

Commit

Permalink
Do not instantiate PlanarMechanics
Browse files Browse the repository at this point in the history
  • Loading branch information
sjoelund committed May 11, 2015
1 parent 1cc7d08 commit 7653919
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions flattening/libraries/3rdParty/PlanarMechanics/Makefile
@@ -1,10 +1,9 @@
TEST = ../../../../rtest -v

TESTFILES = \
instantiatePlanarMechanicsForTesting.mos \
checkPlanarMechanicsForTesting.mos
checkPlanarMechanicsForTesting.mos

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

Expand All @@ -15,8 +14,8 @@ FAILINGTESTFILES= \
DEPENDENCIES = \
*.mo \
*.mos \
Makefile
Makefile


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

Expand All @@ -29,7 +28,7 @@ test :
@echo OPENMODELICAHOME=" $(OPENMODELICAHOME) "
@$(TEST) $(TESTFILES)

# Cleans all files that are not listed as dependencies
# Cleans all files that are not listed as dependencies
clean :
@echo $(DEPENDENCIES) | sed 's/ /\\|/g' > deps.tmp
@rm -f $(CLEAN)
Expand All @@ -38,14 +37,14 @@ clean :
# do it after cleaning and updating the folder
# then you can get a list of file names (which must be dependencies
# since you got them from repository + your own new files)
# then add them to the DEPENDENCIES. You can find the
# list in deps.txt
getdeps:
# then add them to the DEPENDENCIES. You can find the
# list in deps.txt
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 $(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...
Expand Down

0 comments on commit 7653919

Please sign in to comment.