< prev index next >

test/sun/tools/jps/JpsHelper.java

Print this page
rev 12066 : 8085813: The targeted processes in sun/tools tests should be launched with -XX:+UsePerfData flag in order to work on embedded platforms

*** 1,7 **** /* ! * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 92,104 **** } } /** ! * VM arguments to start test application with */ ! public static final String[] VM_ARGS = {"-Xmx512m", "-XX:+PrintGCDetails"}; /** * VM flag to start test application with */ public static final String VM_FLAG = "+DisableExplicitGC"; --- 92,105 ---- } } /** ! * VM arguments to start test application with. ! * -XX:+UsePerfData is required for running the tests on embedded platforms. */ ! public static final String[] VM_ARGS = {"-XX:+UsePerfData", "-Xmx512m", "-XX:+PrintGCDetails"}; /** * VM flag to start test application with */ public static final String VM_FLAG = "+DisableExplicitGC";
< prev index next >