-
Bug
-
Resolution: Fixed
-
P4
-
5.0u20, 6
-
b116
-
generic, sparc
-
generic, solaris_9
-
Verified
Failing tests: javah/javah_test29
Compile code below
Delete Param.class
javah ParamClassTest
Does not report error.
"Error: A required super class Param could not be found."
public class ParamClassTest
{
static
{
System.loadLibrary("Test");
}
public native void method(Param s);
public static void main(String a[])
{
// ErrorFile f= new ErrorFile();
}
}
class Param
{
}
Compile code below
Delete Param.class
javah ParamClassTest
Does not report error.
"Error: A required super class Param could not be found."
public class ParamClassTest
{
static
{
System.loadLibrary("Test");
}
public native void method(Param s);
public static void main(String a[])
{
// ErrorFile f= new ErrorFile();
}
}
class Param
{
}
- relates to
-
JDK-5070898 javah command doesn't throw correct exit code in case of error
-
- Closed
-