]> git.saurik.com Git - bison.git/blobdiff - tests/input.at
Also pass --install to the second invocation of autoreconf, to let automake install...
[bison.git] / tests / input.at
index 117af98674f0292b7abb09aa619209b85ff46ca9..2ee59f29f7b9cd7166209e040415db6eb536e50e 100644 (file)
@@ -29,11 +29,11 @@ AT_SETUP([Invalid $n])
 
 AT_DATA([input.y],
 [[%%
-exp: { $$ = $1 ; }
+exp: { $$ = $1 ; };
 ]])
 
 AT_CHECK([bison input.y], [1], [],
-[[input.y:2: invalid $ value
+[[input.y:2: invalid value: $1
 ]])
 
 AT_CLEANUP
@@ -48,11 +48,11 @@ AT_SETUP([Invalid @n])
 
 AT_DATA([input.y],
 [[%%
-exp: { @$ = @1 ; }
+exp: { @$ = @1 ; };
 ]])
 
 AT_CHECK([bison input.y], [1], [],
-[[input.y:2: invalid @ value
+[[input.y:2: invalid value: @1
 ]])
 
 AT_CLEANUP