AT_SETUP([Duplicate string])
-AT_DATA([duplicate.y],
+AT_DATA([input.y],
[[/* `Bison -v' used to dump core when two tokens are defined with the same
string, as LE and GE below. */
%%
]])
-AT_CHECK([bison -v duplicate.y -o duplicate.c], 0, ignore, ignore)
+AT_CHECK([bison -v input.y -o input.c], 0, ignore, ignore)
AT_CLEANUP
AT_SETUP([%union and --defines])
-AT_DATA([union.y],
+AT_DATA([input.y],
[%union
{
int integer;
exp: {};
])
-AT_CHECK([bison --defines union.y])
+AT_CHECK([bison --defines input.y])
AT_CLEANUP
AT_SETUP([%union and C comments])
-AT_DATA([union-comment.y],
+AT_DATA([input.y],
[%union
{
/* The int. */ int integer;
exp: {};
])
-AT_CHECK([bison union-comment.y])
-AT_CHECK([fgrep '//*' union-comment.tab.c], [1], [])
+AT_CHECK([bison input.y -o input.c])
+AT_CHECK([fgrep '//*' input.c], [1], [])
AT_CLEANUP