# Test cases Makefile # # Part of the Routino routing software. # # This file Copyright 2011 Andrew M. Bishop # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . # # Routino executables EXE=../planetsplitter ../planetsplitter-slim \ ../router ../router-slim \ ../filedumper ../filedumper-slim # Compilation targets O=$(notdir $(wildcard *.osm)) S=$(foreach f,$(O),$(addsuffix .sh,$(basename $f))) ######## all : @true ######## exe : cd .. && $(MAKE) ######## test : exe @status=true ;\ [ -d fat ] || mkdir fat ;\ for script in $(S); do \ echo "" ;\ echo "Testing: $$script (non-slim) ... " ;\ if ./$$script fat; then echo "... passed"; else echo "... FAILED"; status=false; fi ;\ done ;\ [ -d slim ] || mkdir slim ;\ for script in $(S); do \ echo "" ;\ echo "Testing: $$script (slim) ... " ;\ if ./$$script slim; then echo "... passed"; else echo "... FAILED"; status=false; fi ;\ done ;\ echo "" ;\ if $$status; then echo "Success: all tests passed"; else echo "Warning: Some tests FAILED"; fi ;\ $$status || exit 1 ;\ echo "" ;\ echo "Comparing: slim and non-slim results ... " ;\ if diff -q -r slim fat; then echo "... matched"; else echo "... match FAILED"; status=false; fi ;\ echo "" ;\ if $$status; then echo "Success: slim and non-slim results match"; else echo "Warning: slim and non-slim results are different - FAILED"; fi ;\ $$status ######## clean: rm -rf slim rm -rf fat rm -f *.log rm -f core rm -f *~ ######## distclean: clean @true ######## .FORCE :