Details
-
Bug
-
Resolution: Fixed
-
P3
-
7
-
b102
-
generic
-
generic
Description
test has ignore option with following comment: "This test requires a special compilation environment to access sun.inovke.util. Run by hand."
it can be modified to compile with -XDignore.symbol.file option:
24d23
< package test.sun.invoke.util;
38,39c37,38
< * @ignore This test requires a special compilation environment to access sun.inovke.util. Run by hand.
< * @run junit/othervm test.sun.invoke.util.ValueConversionsTest
---
> * @compile -XDignore.symbol.file ValueConversionsTest.java
> * @run junit/othervm ValueConversionsTest
42c41
< * test.sun.invoke.util.ValueConversionsTest
---
> * ValueConversionsTest
test with suggested changes works fine automatically
it can be modified to compile with -XDignore.symbol.file option:
24d23
< package test.sun.invoke.util;
38,39c37,38
< * @ignore This test requires a special compilation environment to access sun.inovke.util. Run by hand.
< * @run junit/othervm test.sun.invoke.util.ValueConversionsTest
---
> * @compile -XDignore.symbol.file ValueConversionsTest.java
> * @run junit/othervm ValueConversionsTest
42c41
< * test.sun.invoke.util.ValueConversionsTest
---
> * ValueConversionsTest
test with suggested changes works fine automatically