]> git.saurik.com Git - bison.git/blobdiff - tests/headers.at
(struct yyltype): Define members even when not
[bison.git] / tests / headers.at
index 122e58460f63a3815292ef3a4ccaebda3c2f4931..c7f35c43ba584d300fb8856fa1bd8ccfe54df7e3 100644 (file)
@@ -105,7 +105,7 @@ my_error (const char *msg)
 exp:;
 ])
 
-AT_CHECK([bison --defines input.y -o input.c])
+AT_CHECK([bison --defines -o input.c input.y])
 
 # YYLTYPE should be defined, and MY_LLOC declared.
 AT_DATA([caller.c],
@@ -123,7 +123,7 @@ main (void)
 
 # Link and execute, just to make sure everything is fine (and in
 # particular, that MY_LLOC is indeed defined somewhere).
-AT_CHECK([$CC $CFLAGS $CPPFLAGS caller.c input.c -o caller], 0, [], [ignore])
-AT_CHECK([./caller])
+AT_COMPILE([caller], [caller.c input.c])
+AT_PARSER_CHECK([./caller])
 
 AT_CLEANUP