]>
Commit | Line | Data |
---|---|---|
342b8b6e | 1 | # Checking the output filenames. -*- Autotest -*- |
f1bbfcce | 2 | # Copyright (C) 2000, 2001, 2002, 2005 Free Software Foundation, Inc. |
342b8b6e AD |
3 | |
4 | # This program is free software; you can redistribute it and/or modify | |
5 | # it under the terms of the GNU General Public License as published by | |
6 | # the Free Software Foundation; either version 2, or (at your option) | |
7 | # any later version. | |
8 | ||
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. | |
13 | ||
14 | # You should have received a copy of the GNU General Public License | |
15 | # along with this program; if not, write to the Free Software | |
0fb669f9 PE |
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
17 | # 02110-1301, USA. | |
342b8b6e AD |
18 | |
19 | AT_BANNER([[Output file names.]]) | |
20 | ||
21 | ||
7625ec2c AD |
22 | # AT_CHECK_OUTPUT(INPUT-FILE, [DIRECTIVES], [FLAGS], EXPECTED-FILES, [SHELLIO], |
23 | # [ADDITIONAL-TESTS]) | |
f1bbfcce | 24 | # ----------------------------------------------------------------------------- |
342b8b6e | 25 | m4_define([AT_CHECK_OUTPUT], |
7625ec2c AD |
26 | [AT_SETUP([Output files: $2 $3 $5]) |
27 | case "$1" in | |
28 | */*) mkdir `echo "$1" | sed 's,/.*,,'`;; | |
29 | esac | |
342b8b6e AD |
30 | AT_DATA([$1], |
31 | [[$2 | |
32 | %% | |
bfcf1f3a | 33 | foo: {}; |
342b8b6e AD |
34 | ]]) |
35 | ||
f1bbfcce | 36 | AT_CHECK([bison $3 $1 $5], 0) |
342b8b6e | 37 | AT_CHECK([ls $4], [], [ignore]) |
7625ec2c | 38 | $6 |
d803322e | 39 | AT_CLEANUP |
342b8b6e AD |
40 | ]) |
41 | ||
42 | AT_CHECK_OUTPUT([foo.y], [], [-dv], | |
43 | [foo.output foo.tab.c foo.tab.h]) | |
f1bbfcce PE |
44 | AT_CHECK_OUTPUT([foo.y], [], [-dv], |
45 | [foo.output foo.tab.c foo.tab.h], | |
46 | [>&-]) | |
342b8b6e AD |
47 | AT_CHECK_OUTPUT([foo.y], [], [-dv -o foo.c], |
48 | [foo.c foo.h foo.output]) | |
49 | AT_CHECK_OUTPUT([foo.y], [], [-dv -o foo.tab.c], | |
50 | [foo.output foo.tab.c foo.tab.h]) | |
51 | AT_CHECK_OUTPUT([foo.y], [], [-dv -y], | |
52 | [y.output y.tab.c y.tab.h]) | |
53 | AT_CHECK_OUTPUT([foo.y], [], [-dv -b bar], | |
54 | [bar.output bar.tab.c bar.tab.h]) | |
55 | AT_CHECK_OUTPUT([foo.y], [], [-dv -g -o foo.c], | |
56 | [foo.c foo.h foo.output foo.vcg]) | |
57 | ||
58 | ||
59 | AT_CHECK_OUTPUT([foo.y], [%defines %verbose], [], | |
60 | [foo.output foo.tab.c foo.tab.h]) | |
61 | AT_CHECK_OUTPUT([foo.y], [%defines %verbose %yacc],[], | |
62 | [y.output y.tab.c y.tab.h]) | |
63 | ||
5e5d5415 MA |
64 | AT_CHECK_OUTPUT([foo.yy], [%defines %verbose %yacc],[], |
65 | [y.output y.tab.c y.tab.h]) | |
66 | ||
951366c1 AD |
67 | # Exercise %output and %file-prefix |
68 | AT_CHECK_OUTPUT([foo.y], [%file-prefix="bar" %defines %verbose], [], | |
69 | [bar.output bar.tab.c bar.tab.h]) | |
70 | AT_CHECK_OUTPUT([foo.y], [%output="bar.c" %defines %verbose %yacc],[], | |
71 | [bar.output bar.c bar.h]) | |
72 | AT_CHECK_OUTPUT([foo.y], | |
73 | [%file-prefix="baz" %output="bar.c" %defines %verbose %yacc], | |
74 | [], | |
75 | [bar.output bar.c bar.h]) | |
76 | ||
342b8b6e AD |
77 | |
78 | # Check priorities of extension control. | |
79 | AT_CHECK_OUTPUT([foo.yy], [%defines %verbose], [], | |
80 | [foo.output foo.tab.cc foo.tab.hh]) | |
81 | ||
82 | AT_CHECK_OUTPUT([foo.yy], [%defines %verbose ], [-o foo.c], | |
83 | [foo.c foo.h foo.output]) | |
84 | ||
85 | AT_CHECK_OUTPUT([foo.yy], [], | |
86 | [--defines=foo.hpp -o foo.c++], | |
87 | [foo.c++ foo.hpp]) | |
88 | ||
89 | AT_CHECK_OUTPUT([foo.yy], [], | |
90 | [-o foo.c++ --graph=foo.gph], | |
91 | [foo.c++ foo.gph]) | |
7625ec2c AD |
92 | |
93 | ||
94 | ## ------------ ## | |
95 | ## C++ output. ## | |
96 | ## ------------ ## | |
97 | ||
98 | m4_define([AT_CHECK_NO_SUBDIR_PART], | |
99 | [# Also make sure that the includes do not refer to the subdirectory. | |
100 | AT_CHECK([grep 'include .subdir/' $1.cc], 1, []) | |
101 | AT_CHECK([grep 'include .subdir/' $1.hh], 1, []) | |
102 | ]) | |
103 | ||
104 | AT_CHECK_OUTPUT([foo.yy], [%skeleton "lalr1.cc" %defines %verbose], [], | |
105 | [foo.tab.cc foo.tab.hh foo.output location.hh stack.hh position.hh]) | |
106 | ||
107 | AT_CHECK_OUTPUT([subdir/foo.yy], [%skeleton "lalr1.cc" %defines %verbose], [], | |
108 | [foo.tab.cc foo.tab.hh foo.output location.hh stack.hh position.hh], | |
109 | [], [AT_CHECK_NO_SUBDIR_PART([foo.tab])]) | |
110 | ||
111 | AT_CHECK_OUTPUT([subdir/foo.yy], [%skeleton "lalr1.cc" %defines %verbose], | |
112 | [-o subdir/foo.cc], | |
113 | [subdir/foo.cc subdir/foo.hh subdir/foo.output subdir/location.hh subdir/stack.hh subdir/position.hh], | |
114 | [], [AT_CHECK_NO_SUBDIR_PART([subdir/foo])]) |