Skip to content

Commit 925084c

Browse files
author
Harold Seigel
committedJun 24, 2022
8288976: classfile parser 'wrong name' error message has the names the wrong way around
Reviewed-by: dholmes, shade
1 parent 17aacde commit 925084c

File tree

3 files changed

+77
-2
lines changed

3 files changed

+77
-2
lines changed
 

‎src/hotspot/share/classfile/classFileParser.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -5842,8 +5842,8 @@ void ClassFileParser::parse_stream(const ClassFileStream* const stream,
58425842
Exceptions::fthrow(THREAD_AND_LOCATION,
58435843
vmSymbols::java_lang_NoClassDefFoundError(),
58445844
"%s (wrong name: %s)",
5845-
class_name_in_cp->as_C_string(),
5846-
_class_name->as_C_string()
5845+
_class_name->as_C_string(),
5846+
class_name_in_cp->as_C_string()
58475847
);
58485848
return;
58495849
} else {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
/*
2+
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
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+
*
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.
22+
*/
23+
24+
/*
25+
* @test
26+
* @bug 8288976
27+
* @library /test/lib
28+
* @summary Check that the right message is displayed for NoClassDefFoundError exception.
29+
* @requires vm.flagless
30+
* @modules java.base/jdk.internal.misc
31+
* java.management
32+
* @compile C.java
33+
* @run driver Bad_NCDFE_Msg
34+
*/
35+
36+
import java.io.File;
37+
import jdk.test.lib.process.ProcessTools;
38+
import jdk.test.lib.process.OutputAnalyzer;
39+
40+
public class Bad_NCDFE_Msg {
41+
42+
public static void main(String args[]) throws Throwable {
43+
ProcessBuilder pb = ProcessTools.createJavaProcessBuilder(
44+
"-cp", System.getProperty("test.classes") + File.separator + "pkg", "C");
45+
OutputAnalyzer output = new OutputAnalyzer(pb.start());
46+
output.shouldContain("java.lang.NoClassDefFoundError: C (wrong name: pkg/C");
47+
output.shouldHaveExitValue(1);
48+
}
49+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/*
2+
* Copyright (c) 2022, Oracle and/or its affiliates. All rights reserved.
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+
*
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.
22+
*/
23+
24+
// class used by test Bad_NCDFE_Msg.java.
25+
package pkg;
26+
public class C { }

0 commit comments

Comments
 (0)
Please sign in to comment.