Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino
Contents of /branches/2.3.1-dev/src/test/Makefile
Parent Directory
|
Revision Log
Revision 1047 -
(show annotations)
(download)
Sat Aug 11 17:33:04 2012 UTC (12 years, 7 months ago) by amb
File size: 3100 byte(s)
Sat Aug 11 17:33:04 2012 UTC (12 years, 7 months ago) by amb
File size: 3100 byte(s)
Merge the changes from trunk version into version 2.3.1 branch.
1 | # Test cases Makefile |
2 | # |
3 | # Part of the Routino routing software. |
4 | # |
5 | # This file Copyright 2011-2012 Andrew M. Bishop |
6 | # |
7 | # This program is free software: you can redistribute it and/or modify |
8 | # it under the terms of the GNU Affero General Public License as published by |
9 | # the Free Software Foundation, either version 3 of the License, or |
10 | # (at your option) any later version. |
11 | # |
12 | # This program is distributed in the hope that it will be useful, |
13 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
15 | # GNU Affero General Public License for more details. |
16 | # |
17 | # You should have received a copy of the GNU Affero General Public License |
18 | # along with this program. If not, see <http://www.gnu.org/licenses/>. |
19 | # |
20 | |
21 | # Routino executables |
22 | |
23 | EXE=../planetsplitter ../planetsplitter-slim \ |
24 | ../router ../router-slim \ |
25 | ../filedumper ../filedumper-slim |
26 | |
27 | # Compilation targets |
28 | |
29 | O=$(notdir $(wildcard *.osm)) |
30 | S=$(foreach f,$(O),$(addsuffix .sh,$(basename $f))) |
31 | |
32 | ######## |
33 | |
34 | all : |
35 | @true |
36 | |
37 | ######## |
38 | |
39 | exe : |
40 | cd .. && $(MAKE) |
41 | |
42 | ######## |
43 | |
44 | test : exe |
45 | @status=true ;\ |
46 | for script in $(S); do \ |
47 | echo "" ;\ |
48 | echo "Testing: $$script (non-slim, no pruning) ... " ;\ |
49 | if ./$$script fat; then echo "... passed"; else echo "... FAILED"; status=false; fi ;\ |
50 | done ;\ |
51 | for script in $(S); do \ |
52 | echo "" ;\ |
53 | echo "Testing: $$script (slimm, no pruning) ... " ;\ |
54 | if ./$$script slim; then echo "... passed"; else echo "... FAILED"; status=false; fi ;\ |
55 | done ;\ |
56 | echo "" ;\ |
57 | if $$status; then echo "Success: all tests passed"; else echo "Warning: Some tests FAILED"; fi ;\ |
58 | $$status || exit 1 ;\ |
59 | echo "" ;\ |
60 | echo "Comparing: slim and non-slim results ... " ;\ |
61 | if diff -q -r slim fat; then echo "... matched"; else echo "... match FAILED"; status=false; fi ;\ |
62 | echo "" ;\ |
63 | if $$status; then echo "Success: slim and non-slim results match"; else echo "Warning: slim and non-slim results are different - FAILED"; fi ;\ |
64 | for script in $(S); do \ |
65 | echo "" ;\ |
66 | echo "Testing: $$script (non-slim, pruning) ... " ;\ |
67 | if ./$$script fat prune; then echo "... passed"; else echo "... FAILED"; status=false; fi ;\ |
68 | done ;\ |
69 | for script in $(S); do \ |
70 | echo "" ;\ |
71 | echo "Testing: $$script (slim, pruning) ... " ;\ |
72 | if ./$$script slim prune; then echo "... passed"; else echo "... FAILED"; status=false; fi ;\ |
73 | done ;\ |
74 | echo "" ;\ |
75 | if $$status; then echo "Success: all tests passed"; else echo "Warning: Some tests FAILED"; fi ;\ |
76 | $$status || exit 1 ;\ |
77 | echo "" ;\ |
78 | echo "Comparing: slim and non-slim results ... " ;\ |
79 | if diff -q -r slim-pruned fat-pruned; then echo "... matched"; else echo "... match FAILED"; status=false; fi ;\ |
80 | echo "" ;\ |
81 | if $$status; then echo "Success: slim and non-slim results match"; else echo "Warning: slim and non-slim results are different - FAILED"; fi ;\ |
82 | $$status |
83 | |
84 | ######## |
85 | |
86 | clean: |
87 | rm -rf fat |
88 | rm -rf slim |
89 | rm -rf fat-pruned |
90 | rm -rf slim-pruned |
91 | rm -f *.log |
92 | rm -f *~ |
93 | rm -f core |
94 | rm -f *.gcda *.gcno *.gcov gmon.out |
95 | |
96 | ######## |
97 | |
98 | distclean: clean |
99 | @true |
100 | |
101 | ######## |
102 | |
103 | .PHONY:: all test install clean distclean |