blob: f1192fe62053d033f1a2dad31f5e279d69f0b8aa [file] [log] [blame]
duke6e45e102007-12-01 00:00:00 +00001/*
ohair2283b9d2010-05-25 15:58:33 -07002 * Copyright (c) 1998, Oracle and/or its affiliates. All rights reserved.
duke6e45e102007-12-01 00:00:00 +00003 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
ohair2283b9d2010-05-25 15:58:33 -070019 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20 * or visit www.oracle.com if you need additional information or have any
21 * questions.
duke6e45e102007-12-01 00:00:00 +000022 */
23
24/* @test
25 @bug 4106810 4027740 4078997 4097738
26 @summary Make sure StreamTokenizer will correctly
27 parse different types of comments in input.
28 */
29
30
31import java.io.*;
32
33public class Comment {
34
35 public static void main(String[] args) throws Exception {
36
37 File f = new File(System.getProperty("test.src", "."), "input.txt");
38
39 int slashIsCommentStart = 1;
40 int slashSlashComment = 2;
41 int slashStarComment = 4;
42
43 for (int i = 0; i < 8 ; i++) {
alanb1ece2762010-06-19 15:17:36 +010044 FileReader reader = new FileReader(f);
45 try {
46 StreamTokenizer st = new StreamTokenizer(reader);
duke6e45e102007-12-01 00:00:00 +000047
alanb1ece2762010-06-19 15:17:36 +010048 /* decide the state of this run */
49 boolean slashCommentFlag = ((i & slashIsCommentStart) != 0);
50 boolean slashSlashCommentFlag = ((i & slashSlashComment) != 0);
51 boolean slashStarCommentFlag = ((i & slashStarComment) != 0);
duke6e45e102007-12-01 00:00:00 +000052
alanb1ece2762010-06-19 15:17:36 +010053 /* set the initial state of the tokenizer */
54 if (!slashCommentFlag) {
55 st.ordinaryChar('/');
56 }
57 st.slashSlashComments(slashSlashCommentFlag);
58 st.slashStarComments(slashStarCommentFlag);
duke6e45e102007-12-01 00:00:00 +000059
alanb1ece2762010-06-19 15:17:36 +010060 /* now go throgh the input file */
61 while(st.nextToken() != StreamTokenizer.TT_EOF)
62 {
63 String token = st.sval;
64 if (token == null) {
65 continue;
66 } else {
67 if ((token.compareTo("Error1") == 0) && slashStarCommentFlag) {
68 throw new Exception("Failed to pass one line C comments!");
69 }
70 if ((token.compareTo("Error2") == 0) && slashStarCommentFlag) {
71 throw new Exception("Failed to pass multi line C comments!");
72 }
73 if ((token.compareTo("Error3") == 0) && slashSlashCommentFlag) {
74 throw new Exception("Failed to pass C++ comments!");
75 }
76 if ((token.compareTo("Error4") == 0) && slashCommentFlag) {
77 throw new Exception("Failed to pass / comments!");
78 }
duke6e45e102007-12-01 00:00:00 +000079 }
80 }
alanb1ece2762010-06-19 15:17:36 +010081 } finally {
82 reader.close();
duke6e45e102007-12-01 00:00:00 +000083 }
84 }
85 }
86}