< prev index next >

test/runtime/memory/LargePages/TestLargePagesFlags.java

Print this page




   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 /* @test TestLargePagesFlags
  25  * @summary Tests how large pages are choosen depending on the given large pages flag combinations.
  26  * @library /testlibrary

  27  * @run main TestLargePagesFlags
  28  */
  29 
  30 import com.oracle.java.testlibrary.OutputAnalyzer;
  31 import com.oracle.java.testlibrary.Platform;
  32 import com.oracle.java.testlibrary.ProcessTools;
  33 import java.util.ArrayList;
  34 
  35 public class TestLargePagesFlags {
  36 
  37   public static void main(String [] args) throws Exception {
  38     if (!Platform.isLinux()) {
  39       System.out.println("Skipping. TestLargePagesFlags has only been implemented for Linux.");
  40       return;
  41     }
  42 
  43     testUseTransparentHugePages();
  44     testUseHugeTLBFS();
  45     testUseSHM();
  46     testCombinations();




   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 /* @test TestLargePagesFlags
  25  * @summary Tests how large pages are choosen depending on the given large pages flag combinations.
  26  * @library /testlibrary
  27  * @build com.oracle.java.testlibrary.*
  28  * @run main TestLargePagesFlags
  29  */
  30 
  31 import com.oracle.java.testlibrary.OutputAnalyzer;
  32 import com.oracle.java.testlibrary.Platform;
  33 import com.oracle.java.testlibrary.ProcessTools;
  34 import java.util.ArrayList;
  35 
  36 public class TestLargePagesFlags {
  37 
  38   public static void main(String [] args) throws Exception {
  39     if (!Platform.isLinux()) {
  40       System.out.println("Skipping. TestLargePagesFlags has only been implemented for Linux.");
  41       return;
  42     }
  43 
  44     testUseTransparentHugePages();
  45     testUseHugeTLBFS();
  46     testUseSHM();
  47     testCombinations();


< prev index next >