1 # Java tests for simple calculator. -*- Autotest -*-
3 # Copyright (C) 2007-2010 Free Software Foundation, Inc.
5 # This program is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program. If not, see <http://www.gnu.org/licenses/>.
18 AT_BANNER([[Java Calculator.]])
21 # ------------------------- #
22 # Helping Autotest macros. #
23 # ------------------------- #
26 # _AT_DATA_JAVA_CALC_Y($1, $2, $3, [BISON-DIRECTIVES])
27 # ----------------------------------------------------------------------
28 # Produce `calc.y'. Don't call this macro directly, because it contains
29 # some occurrences of `$1' etc. which will be interpreted by m4. So
30 # you should call it with $1, $2, and $3 as arguments, which is what
31 # AT_DATA_JAVA_CALC_Y does.
32 m4_define([_AT_DATA_JAVA_CALC_Y],
33 [m4_if([$1$2$3], $[1]$[2]$[3], [],
34 [m4_fatal([$0: Invalid arguments: $@])])dnl
36 [[/* Infix notation calculator--calc */
39 %define parser_class_name "Calc"
45 import java.io.StreamTokenizer;
46 import java.io.InputStream;
47 import java.io.InputStreamReader;
48 import java.io.Reader;
49 import java.io.IOException;
52 /* Bison Declarations */
53 %token <Integer> NUM "number"
56 %nonassoc '=' /* comparison */
59 %left NEG /* negation--unary minus */
60 %right '^' /* exponentiation */
79 if ($1.intValue () != $3.intValue ())
80 yyerror ("calc: error: " + $1 + " != " + $3);
82 | exp '+' exp { $$ = new Integer ($1.intValue () + $3.intValue ()); }
83 | exp '-' exp { $$ = new Integer ($1.intValue () - $3.intValue ()); }
84 | exp '*' exp { $$ = new Integer ($1.intValue () * $3.intValue ()); }
85 | exp '/' exp { $$ = new Integer ($1.intValue () / $3.intValue ()); }
86 | '-' exp %prec NEG { $$ = new Integer (-$2.intValue ()); }
87 | exp '^' exp { $$ = new Integer ((int)
88 Math.pow ($1.intValue (),
90 | '(' exp ')' { $$ = $2; }
91 | '(' error ')' { $$ = new Integer (1111); }
92 | '!' { $$ = new Integer (0); return YYERROR; }
93 | '-' error { $$ = new Integer (0); return YYERROR; }
101 class CalcLexer implements Calc.Lexer {
105 public ]AT_LEXPARAM_IF([[YYLexer]], [[CalcLexer]]) (InputStream is)
107 st = new StreamTokenizer (new InputStreamReader (is));
109 st.eolIsSignificant (true);
110 st.whitespaceChars (9, 9);
111 st.whitespaceChars (32, 32);
112 st.wordChars (48, 57);
117 Position yyendpos = new Position (1);
119 public Position getStartPos() {
123 public Position getEndPos() {
127 public void yyerror (Calc.Location l, String s)
130 System.err.println (s);
132 System.err.println (l.begin + ": " + s);
135 public void yyerror (String s)
137 System.err.println (s);
143 public Object getLVal() {
147 public int yylex () throws IOException {
148 int ttype = st.nextToken ();
149 ]AT_LOCATION_IF([[yystartpos = yyendpos;]])[
150 if (ttype == st.TT_EOF)
153 else if (ttype == st.TT_EOL)
155 ]AT_LOCATION_IF([[yyendpos = new Position (yyendpos.lineno () + 1);]])[
159 else if (ttype == st.TT_WORD)
161 yylval = new Integer (st.sval);
184 public Position (int l)
189 public long getHashCode ()
194 public boolean equals (Position l)
196 return l.line == line;
199 public String toString ()
201 return Integer.toString (line);
211 ])# _AT_DATA_JAVA_CALC_Y
214 # AT_DATA_CALC_Y([BISON-OPTIONS])
215 # -------------------------------------------------
217 m4_define([AT_DATA_JAVA_CALC_Y],
218 [_AT_DATA_JAVA_CALC_Y($[1], $[2], $[3], [$1])
223 # AT_JAVA_COMPILE(SOURCE)
224 # -----------------------
225 # Compile SOURCES into Java class files. Skip the test if java or javac is
227 m4_define([AT_JAVA_COMPILE],
228 [AT_CHECK([test -n "$CONF_JAVA" || exit 77
229 test -n "$CONF_JAVAC" || exit 77])
230 AT_CHECK([$SHELL ../../../javacomp.sh $1],
231 0, [ignore], [ignore])])
234 # AT_JAVA_PARSER_CHECK(COMMAND, EXIT-STATUS, EXPOUT, EXPERR, [PRE])
235 # -----------------------------------------------------------------
236 m4_define([AT_JAVA_PARSER_CHECK],
237 [AT_CHECK([$5 $SHELL ../../../javaexec.sh $1], [$2], [$3], [$4])])
240 # _AT_CHECK_JAVA_CALC_ERROR(BISON-OPTIONS, INPUT,
241 # [VERBOSE-AND-LOCATED-ERROR-MESSAGE])
242 # ---------------------------------------------------------
243 # Run `calc' on INPUT, and expect a `syntax error' message.
245 # If INPUT starts with a slash, it is used as absolute input file name,
246 # otherwise as contents.
248 # The VERBOSE-AND-LOCATED-ERROR-MESSAGE is stripped of locations
249 # and expected tokens if necessary, and compared with the output.
250 m4_define([_AT_CHECK_JAVA_CALC_ERROR],
251 [m4_bmatch([$2], [^/],
252 [AT_JAVA_PARSER_CHECK([Calc < $2], 0, [], [stderr])],
256 AT_JAVA_PARSER_CHECK([Calc < input], 0, [], [stderr])])
258 # Normalize the observed and expected error messages, depending upon the
260 # 1. Create the reference error message.
264 # 2. If locations are not used, remove them.
265 AT_YYERROR_SEES_LOC_IF([],
266 [[sed 's/^[-0-9.]*: //' expout >at-expout
267 mv at-expout expout]])
268 # 3. If error-verbose is not used, strip the`, unexpected....' part.
269 m4_bmatch([$1], [%error-verbose], [],
270 [[sed 's/syntax error, .*$/syntax error/' expout >at-expout
271 mv at-expout expout]])
273 AT_CHECK([cat stderr], 0, [expout])
276 # _AT_CHECK_JAVA_CALC([BISON-DIRECTIVES], [BISON-CODE])
277 # -----------------------------------------------------------------------
278 # Start a testing chunk which compiles `calc' grammar with
279 # BISON-DIRECTIVES, and performs several tests over the parser.
280 m4_define([_AT_CHECK_JAVA_CALC],
281 [# We use integers to avoid dependencies upon the precision of doubles.
282 AT_SETUP([Calculator $1])
284 AT_BISON_OPTION_PUSHDEFS([$1])
286 AT_DATA_JAVA_CALC_Y([$1
291 AT_BISON_CHECK([-o Calc.java Calc.y])
292 AT_JAVA_COMPILE([Calc.java])
294 # Test the priorities.
310 AT_JAVA_PARSER_CHECK([Calc < input], 0, [], [stderr])
313 # Some syntax errors.
314 _AT_CHECK_JAVA_CALC_ERROR([$1], [0 0],
315 [1: syntax error, unexpected number])
316 _AT_CHECK_JAVA_CALC_ERROR([$1], [1//2],
317 [1: syntax error, unexpected '/', expecting number or '-' or '(' or '!'])
318 _AT_CHECK_JAVA_CALC_ERROR([$1], [error],
319 [1: syntax error, unexpected $undefined])
320 _AT_CHECK_JAVA_CALC_ERROR([$1], [1 = 2 = 3],
321 [1: syntax error, unexpected '='])
322 _AT_CHECK_JAVA_CALC_ERROR([$1], [
324 [2: syntax error, unexpected '+'])
325 # Exercise error messages with EOF: work on an empty file.
326 _AT_CHECK_JAVA_CALC_ERROR([$1], [/dev/null],
327 [1: syntax error, unexpected end of input])
329 # Exercise the error token: without it, we die at the first error,
332 # - have several errors which exercise different shift/discardings
333 # - (): nothing to pop, nothing to discard
334 # - (1 + 1 + 1 +): a lot to pop, nothing to discard
335 # - (* * *): nothing to pop, a lot to discard
336 # - (1 + 2 * *): some to pop and discard
338 # - test the action associated to `error'
340 # - check the lookahead that triggers an error is not discarded
341 # when we enter error recovery. Below, the lookahead causing the
342 # first error is ")", which is needed to recover from the error and
343 # produce the "0" that triggers the "0 != 1" error.
345 _AT_CHECK_JAVA_CALC_ERROR([$1],
346 [() + (1 + 1 + 1 +) + (* * *) + (1 * 2 * *) = 1],
347 [1: syntax error, unexpected ')', expecting number or '-' or '(' or '!'
348 1: syntax error, unexpected ')', expecting number or '-' or '(' or '!'
349 1: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
350 1: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
351 calc: error: 4444 != 1])
353 # The same, but this time exercising explicitly triggered syntax errors.
354 # POSIX says the lookahead causing the error should not be discarded.
355 _AT_CHECK_JAVA_CALC_ERROR([$1], [(!) + (0 0) = 1],
356 [1: syntax error, unexpected number
357 calc: error: 2222 != 1])
358 _AT_CHECK_JAVA_CALC_ERROR([$1], [(- *) + (0 0) = 1],
359 [1: syntax error, unexpected '*', expecting number or '-' or '(' or '!'
360 1: syntax error, unexpected number
361 calc: error: 2222 != 1])
362 AT_BISON_OPTION_POPDEFS
365 ])# _AT_CHECK_JAVA_CALC
368 # AT_CHECK_JAVA_CALC([BISON-DIRECTIVES])
369 # --------------------------------------------------------
370 # Start a testing chunk which compiles `calc' grammar with
371 # BISON-DIRECTIVES, and performs several tests over the parser.
372 # Run the test with and without %error-verbose.
373 m4_define([AT_CHECK_JAVA_CALC],
374 [_AT_CHECK_JAVA_CALC([$1], [$2])
375 _AT_CHECK_JAVA_CALC([%error-verbose $1], [$2])
376 _AT_CHECK_JAVA_CALC([%locations $1], [$2])
377 _AT_CHECK_JAVA_CALC([%error-verbose %locations $1], [$2])
378 ])# AT_CHECK_JAVA_CALC
381 # ------------------------ #
382 # Simple LALR Calculator. #
383 # ------------------------ #
385 AT_CHECK_JAVA_CALC([], [[
386 public static void main (String args[]) throws IOException
388 CalcLexer l = new CalcLexer (System.in);
389 Calc p = new Calc (l);
394 AT_CHECK_JAVA_CALC([%lex-param { InputStream is } ], [[
395 public static void main (String args[]) throws IOException
397 new Calc (System.in).parse ();
407 AT_BANNER([Java Parameters.])
410 # AT_CHECK_JAVA_MINIMAL([DIRECTIVES], [PARSER_ACTION], [POSITION_CLASS])
411 # ----------------------------------------------------------------------
412 # Check that a mininal parser with DIRECTIVES compiles in Java.
413 # Put the Java code in YYParser.java.
414 m4_define([AT_CHECK_JAVA_MINIMAL],
416 AT_DATA([[YYParser.y]], [
426 class m4_default([$3], [Position]) {}
428 AT_BISON_CHECK([[YYParser.y]])
429 AT_CHECK([[grep '[mb]4_' YYParser.y]], [1], [ignore])
430 AT_JAVA_COMPILE([[YYParser.java]])
434 # AT_CHECK_JAVA_MINIMAL_W_LEXER([1:DIRECTIVES], [2:LEX_THROWS],
435 # [3:YYLEX_ACTION], [4:LEXER_BODY], [5:PARSER_ACTION], [6:STYPE],
436 # [7:POSITION_TYPE], [8:LOCATION_TYPE])
437 # ---------------------------------------------------------------------
438 # Check that a mininal parser with DIRECTIVES and a "%code lexer".
439 # YYLEX is the body of yylex () which throws LEX_THROW.
441 m4_define([AT_CHECK_JAVA_MINIMAL_W_LEXER],
442 [AT_CHECK_JAVA_MINIMAL([$1
446 m4_default([$6], [Object]) yylval;
447 public m4_default([$6], [Object]) getLVal() { return yylval; }
449 public m4_default([$7], [Position]) getStartPos() { return null; }
450 public m4_default([$7], [Position]) getEndPos() { return null; }
452 public void yyerror (m4_default([$8], [Location]) loc, String s)
454 System.err.println (loc + ": " + s);
457 public int yylex ()$2
466 # AT_CHECK_JAVA_GREP([LINE], [COUNT=1])
467 # -------------------------------------
468 # Check that YYParser.java contains exactly COUNT lines matching ^LINE$
470 m4_define([AT_CHECK_JAVA_GREP],
471 [AT_CHECK([grep -c '^$1$' YYParser.java], [], [m4_default([$2], [1])
476 # ----------------------------------- #
477 # Java parser class and package names #
478 # ----------------------------------- #
480 AT_SETUP([Java parser class and package names])
482 AT_CHECK_JAVA_MINIMAL([])
483 AT_CHECK_JAVA_GREP([[class YYParser]])
485 AT_CHECK_JAVA_MINIMAL([[%name-prefix "Prefix"]])
486 AT_CHECK_JAVA_GREP([[class PrefixParser]])
488 AT_CHECK_JAVA_MINIMAL([[%define parser_class_name "ParserClassName"]])
489 AT_CHECK_JAVA_GREP([[class ParserClassName]])
491 AT_CHECK_JAVA_MINIMAL([[%define package "user_java_package"]])
492 AT_CHECK_JAVA_GREP([[package user_java_package;]])
497 # --------------------------- #
498 # Java parser class modifiers #
499 # --------------------------- #
501 AT_SETUP([Java parser class modifiers])
503 AT_CHECK_JAVA_MINIMAL([[%define abstract]])
504 AT_CHECK_JAVA_GREP([[abstract class YYParser]])
506 AT_CHECK_JAVA_MINIMAL([[%define final]])
507 AT_CHECK_JAVA_GREP([[final class YYParser]])
509 AT_CHECK_JAVA_MINIMAL([[%define strictfp]])
510 AT_CHECK_JAVA_GREP([[strictfp class YYParser]])
512 AT_CHECK_JAVA_MINIMAL([[
515 AT_CHECK_JAVA_GREP([[abstract strictfp class YYParser]])
517 AT_CHECK_JAVA_MINIMAL([[
520 AT_CHECK_JAVA_GREP([[final strictfp class YYParser]])
522 AT_CHECK_JAVA_MINIMAL([[%define public]])
523 AT_CHECK_JAVA_GREP([[public class YYParser]])
525 AT_CHECK_JAVA_MINIMAL([[
528 AT_CHECK_JAVA_GREP([[public abstract class YYParser]])
530 AT_CHECK_JAVA_MINIMAL([[
533 AT_CHECK_JAVA_GREP([[public final class YYParser]])
535 AT_CHECK_JAVA_MINIMAL([[
538 AT_CHECK_JAVA_GREP([[public strictfp class YYParser]])
540 AT_CHECK_JAVA_MINIMAL([[
544 AT_CHECK_JAVA_GREP([[public abstract strictfp class YYParser]])
546 AT_CHECK_JAVA_MINIMAL([[
550 AT_CHECK_JAVA_GREP([[public final strictfp class YYParser]])
555 # ---------------------------------------- #
556 # Java parser class extends and implements #
557 # ---------------------------------------- #
559 AT_SETUP([Java parser class extends and implements])
561 AT_CHECK_JAVA_MINIMAL([[%define extends "Thread"]])
562 AT_CHECK_JAVA_GREP([[class YYParser extends Thread]])
564 AT_CHECK_JAVA_MINIMAL([[%define implements "Cloneable"]])
565 AT_CHECK_JAVA_GREP([[class YYParser implements Cloneable]])
567 AT_CHECK_JAVA_MINIMAL([[
568 %define extends "Thread"
569 %define implements "Cloneable"]])
570 AT_CHECK_JAVA_GREP([[class YYParser extends Thread implements Cloneable]])
575 # -------------------------------- #
576 # Java %parse-param and %lex-param #
577 # -------------------------------- #
579 AT_SETUP([Java %parse-param and %lex-param])
581 AT_CHECK_JAVA_MINIMAL([])
582 AT_CHECK_JAVA_GREP([[ *public YYParser (Lexer yylexer) {]])
584 AT_CHECK_JAVA_MINIMAL([[%parse-param {int parse_param1}]])
585 AT_CHECK_JAVA_GREP([[ *protected final int parse_param1;]])
586 AT_CHECK_JAVA_GREP([[ *public YYParser (Lexer yylexer, *int parse_param1) {]])
587 AT_CHECK_JAVA_GREP([[[ ]*this.parse_param1 = parse_param1;]])
589 AT_CHECK_JAVA_MINIMAL([[
590 %parse-param {int parse_param1}
591 %parse-param {long parse_param2}]])
592 AT_CHECK_JAVA_GREP([[ *protected final int parse_param1;]])
593 AT_CHECK_JAVA_GREP([[ *protected final long parse_param2;]])
594 AT_CHECK_JAVA_GREP([[ *public YYParser (Lexer yylexer, *int parse_param1, *long parse_param2) {]])
595 AT_CHECK_JAVA_GREP([[[ ]*this.parse_param1 = parse_param1;]])
596 AT_CHECK_JAVA_GREP([[[ ]*this.parse_param2 = parse_param2;]])
598 AT_CHECK_JAVA_MINIMAL_W_LEXER([], [], [[return EOF;]])
599 AT_CHECK_JAVA_GREP([[ *public YYParser () {]])
600 AT_CHECK_JAVA_GREP([[ *protected YYParser (Lexer yylexer) {]])
602 AT_CHECK_JAVA_MINIMAL_W_LEXER([[%parse-param {int parse_param1}]],
604 AT_CHECK_JAVA_GREP([[ *protected final int parse_param1;]])
605 AT_CHECK_JAVA_GREP([[ *public YYParser (int parse_param1) {]])
606 AT_CHECK_JAVA_GREP([[ *protected YYParser (Lexer yylexer, *int parse_param1) {]])
607 AT_CHECK_JAVA_GREP([[[ ]*this.parse_param1 = parse_param1;]], [2])
609 AT_CHECK_JAVA_MINIMAL_W_LEXER([[
610 %parse-param {int parse_param1}
611 %parse-param {long parse_param2}]],
613 AT_CHECK_JAVA_GREP([[ *protected final int parse_param1;]])
614 AT_CHECK_JAVA_GREP([[ *protected final long parse_param2;]])
615 AT_CHECK_JAVA_GREP([[ *public YYParser (int parse_param1, *long parse_param2) {]])
616 AT_CHECK_JAVA_GREP([[ *protected YYParser (Lexer yylexer, *int parse_param1, *long parse_param2) {]])
617 AT_CHECK_JAVA_GREP([[[ ]*this.parse_param1 = parse_param1;]], [2])
618 AT_CHECK_JAVA_GREP([[[ ]*this.parse_param2 = parse_param2;]], [2])
620 AT_CHECK_JAVA_MINIMAL_W_LEXER([[%lex-param {char lex_param1}]],
621 [], [[return EOF;]], [[YYLexer (char lex_param1) {}]])
622 AT_CHECK_JAVA_GREP([[ *public YYParser (char lex_param1) {]])
623 AT_CHECK_JAVA_GREP([[.* = new YYLexer *(lex_param1);]])
625 AT_CHECK_JAVA_MINIMAL_W_LEXER([[
626 %lex-param {char lex_param1}
627 %lex-param {short lex_param2}]],
628 [], [[return EOF;]], [[YYLexer (char lex_param1, short lex_param2) {}]])
629 AT_CHECK_JAVA_GREP([[ *public YYParser (char lex_param1, *short lex_param2) {]])
630 AT_CHECK_JAVA_GREP([[.* = new YYLexer *(lex_param1, *lex_param2);]])
632 AT_CHECK_JAVA_MINIMAL_W_LEXER([[
633 %parse-param {int parse_param1}
634 %parse-param {long parse_param2}
635 %lex-param {char lex_param1}
636 %lex-param {short lex_param2}]],
637 [], [[return EOF;]], [[YYLexer (char lex_param1, short lex_param2) {}]])
638 AT_CHECK_JAVA_GREP([[ *protected final int parse_param1;]])
639 AT_CHECK_JAVA_GREP([[ *protected final long parse_param2;]])
640 AT_CHECK_JAVA_GREP([[ *public YYParser (char lex_param1, *short lex_param2, *int parse_param1, *long parse_param2) {]])
641 AT_CHECK_JAVA_GREP([[.* = new YYLexer *(lex_param1, *lex_param2);]])
642 AT_CHECK_JAVA_GREP([[ *protected YYParser (Lexer yylexer, *int parse_param1, *long parse_param2) {]])
643 AT_CHECK_JAVA_GREP([[[ ]*this.parse_param1 = parse_param1;]], [2])
644 AT_CHECK_JAVA_GREP([[[ ]*this.parse_param2 = parse_param2;]], [2])
649 # ------------------------- #
650 # Java throw specifications #
651 # ------------------------- #
653 AT_SETUP([Java throws specifications])
655 # %define throws - 0 1 2
656 # %define lex-throws - 0 1 2
659 m4_define([AT_JT_lex_throws_define], [m4_case(AT_JT_lex_throws,
661 0, [[%define lex_throws ""]],
662 1, [[%define lex_throws "InterruptedException"]],
663 2, [[%define lex_throws "InterruptedException, IllegalAccessException"]])])
665 m4_define([AT_JT_yylex_throws], [m4_case(AT_JT_lex_throws,
666 -1, [[ throws java.io.IOException]],
668 1, [[ throws InterruptedException]],
669 2, [[ throws InterruptedException, IllegalAccessException]])])
671 m4_define([AT_JT_yylex_action], [m4_case(AT_JT_lex_throws,
672 -1, [[throw new java.io.IOException();]],
674 1, [[throw new InterruptedException();]],
675 2, [[throw new IllegalAccessException();]])])
678 m4_define([AT_JT_throws_define], [m4_case(AT_JT_throws,
680 0, [[%define throws ""]],
681 1, [[%define throws "ClassNotFoundException"]],
682 2, [[%define throws "ClassNotFoundException, InstantiationException"]])])
684 m4_define([AT_JT_yyaction_throws], [m4_case(AT_JT_throws,
687 1, [[ throws ClassNotFoundException]],
688 2, [[ throws ClassNotFoundException, InstantiationException]])])
690 m4_define([AT_JT_parse_throws_2], [m4_case(AT_JT_throws,
693 1, [[, ClassNotFoundException]],
694 2, [[, ClassNotFoundException, InstantiationException]])])
696 m4_define([AT_JT_parse_throws],
697 [m4_if(m4_quote(AT_JT_yylex_throws), [],
698 [AT_JT_yyaction_throws],
699 [AT_JT_yylex_throws[]AT_JT_parse_throws_2])])
701 m4_define([AT_JT_initial_action], [m4_case(AT_JT_throws,
704 1, [[%initial-action {if (true) throw new ClassNotFoundException();}]],
705 2, [[%initial-action {if (true) throw new InstantiationException();}]])])
707 m4_define([AT_JT_parse_action], [m4_case(AT_JT_throws,
710 1, [[throw new ClassNotFoundException();]],
711 2, [[throw new ClassNotFoundException();]])])
713 m4_for([AT_JT_lexer], 0, 1, 1,
714 [m4_for([AT_JT_lex_throws], -1, 2, 1,
715 [m4_for([AT_JT_throws], -1, 2, 1,
716 [m4_if(AT_JT_lexer, 0,
717 [AT_CHECK_JAVA_MINIMAL([
719 AT_JT_lex_throws_define
720 AT_JT_initial_action],
721 [AT_JT_parse_action])],
722 [AT_CHECK_JAVA_MINIMAL_W_LEXER([
724 AT_JT_lex_throws_define
725 AT_JT_initial_action],
726 [AT_JT_yylex_throws],
727 [AT_JT_yylex_action],
729 [AT_JT_parse_action])])
730 AT_CHECK_JAVA_GREP([[ *int yylex ()]AT_JT_yylex_throws *[;]])
731 AT_CHECK_JAVA_GREP([[ *private int yyaction ([^)]*)]AT_JT_yyaction_throws[ *]])
732 AT_CHECK_JAVA_GREP([[ *public boolean parse ()]AT_JT_parse_throws[ *]])
738 # --------------------------------------------- #
739 # Java stype, position_class and location_class #
740 # --------------------------------------------- #
742 AT_SETUP([Java stype, position_class and location_class])
744 AT_CHECK_JAVA_MINIMAL([[
745 %define stype "java.awt.Color"
746 %type<java.awt.Color> start;
747 %define location_type "MyLoc"
748 %define position_type "MyPos"
749 %code { class MyPos {} }]], [[$$ = $<java.awt.Color>1;]], [[MyPos]])
750 AT_CHECK([[grep 'java.awt.Color' YYParser.java]], [0], [ignore])
751 AT_CHECK([[$EGREP -v ' */?\*' YYParser.java | grep 'Position']], [1], [ignore])
752 AT_CHECK([[$EGREP -v ' */?\*' YYParser.java | grep 'Location']], [1], [ignore])
754 AT_CHECK_JAVA_MINIMAL_W_LEXER([[
755 %define stype "java.awt.Color"
756 %type<java.awt.Color> start;
757 %define location_type "MyLoc"
758 %define position_type "MyPos"
759 %code { class MyPos {} }]], [], [[return EOF;]], [],
760 [[$$ = $<java.awt.Color>1;]],
761 [[java.awt.Color]], [[MyPos]], [[MyLoc]])
762 AT_CHECK([[grep 'java.awt.Color' YYParser.java]], [0], [ignore])
763 AT_CHECK([[$EGREP -v ' */?\*' YYParser.java | grep 'Position']], [1], [ignore])
764 AT_CHECK([[$EGREP -v ' */?\*' YYParser.java | grep 'Location']], [1], [ignore])