1 # Checking the output filenames. -*- Autotest -*-
2 # Copyright (C) 2000, 2001, 2002, 2005 Free Software Foundation, Inc.
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)
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.
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
19 AT_BANNER([[Output file names.]])
22 # AT_CHECK_OUTPUT(INPUT-FILE, [DIRECTIVES], [FLAGS], EXPECTED-FILES, [SHELLIO],
24 # -----------------------------------------------------------------------------
25 m4_define([AT_CHECK_OUTPUT],
26 [AT_SETUP([Output files: $2 $3 $5])
28 */*) mkdir `echo "$1" | sed 's,/.*,,'`;;
36 AT_CHECK([bison $3 $1 $5], 0)
37 AT_CHECK([ls $4], [], [ignore])
42 AT_CHECK_OUTPUT([foo.y], [], [-dv],
43 [foo.output foo.tab.c foo.tab.h])
44 AT_CHECK_OUTPUT([foo.y], [], [-dv],
45 [foo.output foo.tab.c foo.tab.h],
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])
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])
64 AT_CHECK_OUTPUT([foo.yy], [%defines %verbose %yacc],[],
65 [y.output y.tab.c y.tab.h])
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],
75 [bar.output bar.c bar.h])
78 # Check priorities of extension control.
79 AT_CHECK_OUTPUT([foo.yy], [%defines %verbose], [],
80 [foo.output foo.tab.cc foo.tab.hh])
82 AT_CHECK_OUTPUT([foo.yy], [%defines %verbose ], [-o foo.c],
83 [foo.c foo.h foo.output])
85 AT_CHECK_OUTPUT([foo.yy], [],
86 [--defines=foo.hpp -o foo.c++],
89 AT_CHECK_OUTPUT([foo.yy], [],
90 [-o foo.c++ --graph=foo.gph],
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, [])
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])
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])])
111 AT_CHECK_OUTPUT([subdir/foo.yy], [%skeleton "lalr1.cc" %defines %verbose],
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])])