Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8267361: JavaTokenizer reads octal numbers mistakenly #4111

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -640,6 +640,13 @@ private void scanNumber(int pos, int radix) {
break;
}
}
// If it is not a floating point literal,
// the octal number should be rescanned correctly.
if (radix == 8) {
sb.setLength(0);
reset(pos);
scanDigits(pos, 8);
}

if (acceptOneOf('l', 'L')) {
tk = TokenKind.LONGLITERAL;
82 changes: 82 additions & 0 deletions test/langtools/tools/javac/lexer/OctalNumberTest.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
/*
* Copyright (c) 2021, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/

/*
* @test
* @bug 8267361
* @summary JavaTokenizer reads octal numbers mistakenly
* @library /tools/lib
* @modules jdk.compiler/com.sun.tools.javac.api
* jdk.compiler/com.sun.tools.javac.main
* @build toolbox.ToolBox toolbox.JavacTask
* @run main OctalNumberTest
*/

import java.util.Arrays;
import java.util.List;

import toolbox.JavacTask;
import toolbox.ToolBox;
import toolbox.TestRunner;
import toolbox.Task;

public class OctalNumberTest extends TestRunner {
ToolBox tb;

OctalNumberTest() {
super(System.err);
tb = new ToolBox();
}

public static void main(String[] args) throws Exception {
var t = new OctalNumberTest();
t.runTests();
}

@Test
public void testOctalNumber() throws Exception {
String code = """
class Digit {
int a = 023; // normal
int b = 089;
int c = 02389;
int d = 028a;
int e = 02a8;
}""";
List<String> output = new JavacTask(tb)
.sources(code)
.options("-XDrawDiagnostics")
.run(Task.Expect.FAIL)
.writeAll()
.getOutputLines(Task.OutputKind.DIRECT);
List<String> expected = Arrays.asList(
"Digit.java:3:14: compiler.err.expected: ';'",
"Digit.java:4:16: compiler.err.expected: ';'",
"Digit.java:5:15: compiler.err.expected: ';'",
"Digit.java:5:17: compiler.err.expected: token.identifier",
"Digit.java:6:15: compiler.err.expected: ';'",
"Digit.java:6:17: compiler.err.expected: token.identifier",
"6 errors");
tb.checkEqual(expected, output);
}
}