]>
Commit | Line | Data |
---|---|---|
1 | # Checking the output filenames. -*- Autotest -*- | |
2 | # Copyright (C) 2000, 2001, 2002, 2005 Free Software Foundation, Inc. | |
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 | |
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA | |
17 | # 02110-1301, USA. | |
18 | ||
19 | AT_BANNER([[Output file names.]]) | |
20 | ||
21 | ||
22 | # AT_CHECK_OUTPUT(INPUT-FILE, [DIRECTIVES], [FLAGS], EXPECTED-FILES, [SHELLIO]) | |
23 | # ----------------------------------------------------------------------------- | |
24 | m4_define([AT_CHECK_OUTPUT], | |
25 | [AT_SETUP([Output files: $2 & $3 $5.]) | |
26 | AT_DATA([$1], | |
27 | [[$2 | |
28 | %% | |
29 | foo: {}; | |
30 | ]]) | |
31 | ||
32 | AT_CHECK([bison $3 $1 $5], 0) | |
33 | AT_CHECK([ls $4], [], [ignore]) | |
34 | AT_CLEANUP | |
35 | ]) | |
36 | ||
37 | AT_CHECK_OUTPUT([foo.y], [], [-dv], | |
38 | [foo.output foo.tab.c foo.tab.h]) | |
39 | AT_CHECK_OUTPUT([foo.y], [], [-dv], | |
40 | [foo.output foo.tab.c foo.tab.h], | |
41 | [>&-]) | |
42 | AT_CHECK_OUTPUT([foo.y], [], [-dv -o foo.c], | |
43 | [foo.c foo.h foo.output]) | |
44 | AT_CHECK_OUTPUT([foo.y], [], [-dv -o foo.tab.c], | |
45 | [foo.output foo.tab.c foo.tab.h]) | |
46 | AT_CHECK_OUTPUT([foo.y], [], [-dv -y], | |
47 | [y.output y.tab.c y.tab.h]) | |
48 | AT_CHECK_OUTPUT([foo.y], [], [-dv -b bar], | |
49 | [bar.output bar.tab.c bar.tab.h]) | |
50 | AT_CHECK_OUTPUT([foo.y], [], [-dv -g -o foo.c], | |
51 | [foo.c foo.h foo.output foo.vcg]) | |
52 | ||
53 | ||
54 | AT_CHECK_OUTPUT([foo.y], [%defines %verbose], [], | |
55 | [foo.output foo.tab.c foo.tab.h]) | |
56 | AT_CHECK_OUTPUT([foo.y], [%defines %verbose %yacc],[], | |
57 | [y.output y.tab.c y.tab.h]) | |
58 | ||
59 | AT_CHECK_OUTPUT([foo.yy], [%defines %verbose %yacc],[], | |
60 | [y.output y.tab.c y.tab.h]) | |
61 | ||
62 | # Exercise %output and %file-prefix | |
63 | AT_CHECK_OUTPUT([foo.y], [%file-prefix="bar" %defines %verbose], [], | |
64 | [bar.output bar.tab.c bar.tab.h]) | |
65 | AT_CHECK_OUTPUT([foo.y], [%output="bar.c" %defines %verbose %yacc],[], | |
66 | [bar.output bar.c bar.h]) | |
67 | AT_CHECK_OUTPUT([foo.y], | |
68 | [%file-prefix="baz" %output="bar.c" %defines %verbose %yacc], | |
69 | [], | |
70 | [bar.output bar.c bar.h]) | |
71 | ||
72 | ||
73 | # Check priorities of extension control. | |
74 | AT_CHECK_OUTPUT([foo.yy], [%defines %verbose], [], | |
75 | [foo.output foo.tab.cc foo.tab.hh]) | |
76 | ||
77 | AT_CHECK_OUTPUT([foo.yy], [%defines %verbose ], [-o foo.c], | |
78 | [foo.c foo.h foo.output]) | |
79 | ||
80 | AT_CHECK_OUTPUT([foo.yy], [], | |
81 | [--defines=foo.hpp -o foo.c++], | |
82 | [foo.c++ foo.hpp]) | |
83 | ||
84 | AT_CHECK_OUTPUT([foo.yy], [], | |
85 | [-o foo.c++ --graph=foo.gph], | |
86 | [foo.c++ foo.gph]) |