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

Print this page




   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 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 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     /**




   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 LFGarbageCollectedTest
  26  * @bug 8046703
  27  * @summary Test verifies that lambda forms are garbage collected
  28  * @author kshefov

  29  * @library /lib/testlibrary/jsr292 /lib/testlibrary
  30  * @build TestMethods
  31  * @build LambdaFormTestCase
  32  * @build LFGarbageCollectedTest
  33  * @run main/othervm LFGarbageCollectedTest
  34  */
  35 
  36 import java.lang.invoke.MethodHandle;
  37 import java.lang.ref.PhantomReference;
  38 import java.lang.ref.ReferenceQueue;
  39 import java.lang.reflect.InvocationTargetException;
  40 import java.util.EnumSet;
  41 import java.util.Map;
  42 
  43 /**
  44  * Lambda forms garbage collection test class.
  45  */
  46 public final class LFGarbageCollectedTest extends LambdaFormTestCase {
  47 
  48     /**