< prev index next >

test/jdk/sun/tools/jhsdb/HeapDumpTest.java

Print this page
rev 51789 : [mq]: asserts


  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
  26  * @bug 8163346
  27  * @summary Test hashing of extended characters in Serviceability Agent.
  28  * @requires vm.hasSAandCanAttach
  29  * @library /test/lib
  30  * @library /lib/testlibrary
  31  * @compile -encoding utf8 HeapDumpTest.java
  32  * @run main/timeout=240 HeapDumpTest
  33  */
  34 
  35 import static jdk.testlibrary.Asserts.assertTrue;
  36 
  37 import java.io.IOException;
  38 import java.io.File;
  39 import java.util.List;
  40 import java.util.Arrays;
  41 
  42 import jdk.test.lib.Platform;
  43 import jdk.test.lib.JDKToolLauncher;
  44 import jdk.test.lib.process.OutputAnalyzer;
  45 import jdk.test.lib.process.ProcessTools;
  46 import jdk.test.lib.apps.LingeredApp;
  47 import jdk.test.lib.hprof.parser.HprofReader;
  48 
  49 public class HeapDumpTest {
  50 
  51     private static LingeredAppWithExtendedChars theApp = null;
  52 
  53     /**
  54      *
  55      * @param vmArgs  - tool arguments to launch jhsdb




  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
  26  * @bug 8163346
  27  * @summary Test hashing of extended characters in Serviceability Agent.
  28  * @requires vm.hasSAandCanAttach
  29  * @library /test/lib

  30  * @compile -encoding utf8 HeapDumpTest.java
  31  * @run main/timeout=240 HeapDumpTest
  32  */
  33 
  34 import static jdk.test.lib.Asserts.assertTrue;
  35 
  36 import java.io.IOException;
  37 import java.io.File;
  38 import java.util.List;
  39 import java.util.Arrays;
  40 
  41 import jdk.test.lib.Platform;
  42 import jdk.test.lib.JDKToolLauncher;
  43 import jdk.test.lib.process.OutputAnalyzer;
  44 import jdk.test.lib.process.ProcessTools;
  45 import jdk.test.lib.apps.LingeredApp;
  46 import jdk.test.lib.hprof.parser.HprofReader;
  47 
  48 public class HeapDumpTest {
  49 
  50     private static LingeredAppWithExtendedChars theApp = null;
  51 
  52     /**
  53      *
  54      * @param vmArgs  - tool arguments to launch jhsdb


< prev index next >