< prev index next >

test/runtime/SharedArchiveFile/SASymbolTableTest.java

Print this page
rev 13329 : 8185436: jtreg: introduce @requires property to disable cds tests
Summary: Fix CompressedClassPointers test to succeed also if cds is not available.


   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 SASymbolTableTest

  26  * @summary Walk symbol table using SA, with and without CDS.
  27  * @requires (vm.opt.UseCompressedOops == null) | (vm.opt.UseCompressedOops == true)
  28  * @library /test/lib
  29  * @modules java.base/jdk.internal.misc
  30  *          jdk.hotspot.agent/sun.jvm.hotspot.oops
  31  *          jdk.hotspot.agent/sun.jvm.hotspot.memory
  32  *          jdk.hotspot.agent/sun.jvm.hotspot.runtime
  33  *          jdk.hotspot.agent/sun.jvm.hotspot.tools
  34  *          java.management
  35  * @build SASymbolTableTestAgent
  36  * @run main SASymbolTableTest
  37  */
  38 
  39 import java.util.Arrays;
  40 import java.util.List;
  41 import jdk.test.lib.cds.CDSTestUtils;
  42 import jdk.test.lib.process.ProcessTools;
  43 import jdk.test.lib.process.OutputAnalyzer;
  44 import jdk.test.lib.JDKToolFinder;
  45 import jdk.test.lib.Platform;




   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 SASymbolTableTest
  26  * @requires vm.cds
  27  * @summary Walk symbol table using SA, with and without CDS.
  28  * @requires (vm.opt.UseCompressedOops == null) | (vm.opt.UseCompressedOops == true)
  29  * @library /test/lib
  30  * @modules java.base/jdk.internal.misc
  31  *          jdk.hotspot.agent/sun.jvm.hotspot.oops
  32  *          jdk.hotspot.agent/sun.jvm.hotspot.memory
  33  *          jdk.hotspot.agent/sun.jvm.hotspot.runtime
  34  *          jdk.hotspot.agent/sun.jvm.hotspot.tools
  35  *          java.management
  36  * @build SASymbolTableTestAgent
  37  * @run main SASymbolTableTest
  38  */
  39 
  40 import java.util.Arrays;
  41 import java.util.List;
  42 import jdk.test.lib.cds.CDSTestUtils;
  43 import jdk.test.lib.process.ProcessTools;
  44 import jdk.test.lib.process.OutputAnalyzer;
  45 import jdk.test.lib.JDKToolFinder;
  46 import jdk.test.lib.Platform;


< prev index next >