author | dxu |
Tue, 19 Nov 2013 13:22:50 -0800 | |
changeset 21824 | 123a828f30dc |
parent 7668 | d4a77089c587 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
7668 | 2 |
* Copyright (c) 1998, 2010, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* 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 |
* |
|
5506 | 19 |
* 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. |
|
2 | 22 |
*/ |
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 |
||
31 |
import java.io.*; |
|
32 |
||
33 |
public 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++) { |
|
5810
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
44 |
FileReader reader = new FileReader(f); |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
45 |
try { |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
46 |
StreamTokenizer st = new StreamTokenizer(reader); |
2 | 47 |
|
5810
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
48 |
/* decide the state of this run */ |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
49 |
boolean slashCommentFlag = ((i & slashIsCommentStart) != 0); |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
50 |
boolean slashSlashCommentFlag = ((i & slashSlashComment) != 0); |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
51 |
boolean slashStarCommentFlag = ((i & slashStarComment) != 0); |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
52 |
|
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
53 |
/* set the initial state of the tokenizer */ |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
54 |
if (!slashCommentFlag) { |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
55 |
st.ordinaryChar('/'); |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
56 |
} |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
57 |
st.slashSlashComments(slashSlashCommentFlag); |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
58 |
st.slashStarComments(slashStarCommentFlag); |
2 | 59 |
|
5810
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
60 |
/* now go throgh the input file */ |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
61 |
while(st.nextToken() != StreamTokenizer.TT_EOF) |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
62 |
{ |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
63 |
String token = st.sval; |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
64 |
if (token == null) { |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
65 |
continue; |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
66 |
} else { |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
67 |
if ((token.compareTo("Error1") == 0) && slashStarCommentFlag) { |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
68 |
throw new Exception("Failed to pass one line C comments!"); |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
69 |
} |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
70 |
if ((token.compareTo("Error2") == 0) && slashStarCommentFlag) { |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
71 |
throw new Exception("Failed to pass multi line C comments!"); |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
72 |
} |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
73 |
if ((token.compareTo("Error3") == 0) && slashSlashCommentFlag) { |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
74 |
throw new Exception("Failed to pass C++ comments!"); |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
75 |
} |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
76 |
if ((token.compareTo("Error4") == 0) && slashCommentFlag) { |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
77 |
throw new Exception("Failed to pass / comments!"); |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
78 |
} |
2 | 79 |
} |
80 |
} |
|
5810
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
81 |
} finally { |
e83d67ad8c96
6962419: TEST_BUG: java_io tests fails in samevm mode
alanb
parents:
5506
diff
changeset
|
82 |
reader.close(); |
2 | 83 |
} |
84 |
} |
|
85 |
} |
|
86 |
} |