test/java/lang/invoke/LFCaching/LFGarbageCollectedTest.java

Print this page




  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 LFGarbageCollectedTest
  26  * @bug 8046703
  27  * @summary Test verifies that lambda forms are garbage collected
  28  * @author kshefov
  29  * @ignore 8057020
  30  * @library /lib/testlibrary/jsr292 /lib/testlibrary
  31  * @build TestMethods
  32  * @build LambdaFormTestCase
  33  * @build LFGarbageCollectedTest
  34  * @run main/othervm/timeout=600 -Djava.lang.invoke.MethodHandle.USE_LF_EDITOR=true -DtestLimit=150 LFGarbageCollectedTest
  35  */
  36 
  37 import java.lang.invoke.MethodHandle;
  38 import java.lang.ref.PhantomReference;
  39 import java.lang.ref.ReferenceQueue;
  40 import java.lang.reflect.InvocationTargetException;
  41 import java.util.EnumSet;
  42 import java.util.Map;
  43 
  44 /**
  45  * Lambda forms garbage collection test class.
  46  */
  47 public final class LFGarbageCollectedTest extends LambdaFormTestCase {
  48 
  49     /**
  50      * Constructor for a lambda forms garbage collection test case.
  51      *
  52      * @param testMethod A method from {@code j.l.i.MethodHandles} class that
  53      * returns a {@code j.l.i.MethodHandle} instance.
  54      */




  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 LFGarbageCollectedTest
  26  * @bug 8046703
  27  * @summary Test verifies that lambda forms are garbage collected
  28  * @author kshefov
  29  * @ignore 8057020
  30  * @library /lib/testlibrary/jsr292 /lib/testlibrary
  31  * @build TestMethods
  32  * @build LambdaFormTestCase
  33  * @build LFGarbageCollectedTest
  34  * @run main/othervm -Djava.lang.invoke.MethodHandle.USE_LF_EDITOR=true LFGarbageCollectedTest
  35  */
  36 
  37 import java.lang.invoke.MethodHandle;
  38 import java.lang.ref.PhantomReference;
  39 import java.lang.ref.ReferenceQueue;
  40 import java.lang.reflect.InvocationTargetException;
  41 import java.util.EnumSet;
  42 import java.util.Map;
  43 
  44 /**
  45  * Lambda forms garbage collection test class.
  46  */
  47 public final class LFGarbageCollectedTest extends LambdaFormTestCase {
  48 
  49     /**
  50      * Constructor for a lambda forms garbage collection test case.
  51      *
  52      * @param testMethod A method from {@code j.l.i.MethodHandles} class that
  53      * returns a {@code j.l.i.MethodHandle} instance.
  54      */