tests: highlight empty right-hand sides
authorAkim Demaille <akim@lrde.epita.fr>
Fri, 25 Jan 2013 11:01:10 +0000 (12:01 +0100)
committerAkim Demaille <akim@lrde.epita.fr>
Fri, 25 Jan 2013 15:35:52 +0000 (16:35 +0100)
* tests/actions.at, tests/c++.at, tests/headers.at,
* tests/input.at: here.

tests/actions.at
tests/c++.at
tests/headers.at
tests/input.at

index b9337ac..b352451 100644 (file)
@@ -196,7 +196,7 @@ AT_DATA_GRAMMAR([[input.y]],
 ]AT_YYLEX_DECLARE[
 }
 %%
-exp:;
+exp: /* empty */;
 %%
 ]AT_YYERROR_DEFINE[
 ]AT_YYLEX_DEFINE[
index d599c87..e5cd069 100644 (file)
@@ -205,7 +205,7 @@ AT_DATA([input.yy],
 %debug
 %defines
 %%
-exp:;
+exp: /* empty */;
 %%
 ]AT_YYERROR_DEFINE[
 ]])
index 203c8fc..11b8c91 100644 (file)
@@ -41,7 +41,7 @@ AT_DATA_GRAMMAR([$1.y],
 ]AT_YYLEX_DECLARE_EXTERN[
 %}
 %%
-dummy:;
+dummy: /* empty */;
 %%
 #include <$1.h>
 ])
@@ -81,7 +81,7 @@ AT_DATA_GRAMMAR([input.y],
 ]AT_YYLEX_DEFINE[
 %}
 %%
-exp:;
+exp: /* empty */;
 ]])
 
 AT_BISON_CHECK([--defines -o input.c input.y])
index 8127f4b..ac5a1fb 100644 (file)
@@ -114,7 +114,7 @@ AT_DATA([input.y],
 %%
 exp: foo { $$; } foo { $2; } foo
    | foo
-   | /* Empty. */
+   | /* empty. */
    ;
 ]])
 
@@ -132,7 +132,7 @@ input.y:6.6-8: warning: type clash on default action: <bar> != <> [-Wother]
     | foo
       ^^^
 input.y:7.5: warning: empty rule for typed nonterminal, and no action [-Wother]
-    | /* Empty. */
+    | /* empty. */
      ^
 ]])
 
@@ -908,7 +908,7 @@ m4_define([AT_CHECK_REQUIRE],
 AT_DATA_GRAMMAR([input.y],
 [[%require "$1";
 %%
-empty_file:;
+empty_file: /* empty */;
 ]])
 AT_BISON_CHECK([-o input.c input.y], $2, [], ignore)
 AT_CLEANUP
@@ -1722,7 +1722,7 @@ m4_pushdef([AT_TEST],
 [AT_DATA([[input.y]],
 [[$1
 %%
-exp:;
+exp: /* empty */;
 ]])
 AT_BISON_CHECK([[$2 input.y]], [[1]], [[]],
 [[$3: error: '%name-prefix' and '%define api.prefix' cannot be used together