Skip to content

Commit

Permalink
8179317: [TESTBUG] rewrite runtime shell tests in java
Browse files Browse the repository at this point in the history
Converted shell tests to Java

Reviewed-by: dholmes, iignatyev, lmesnik
  • Loading branch information
Mikhailo Seledtsov committed Feb 5, 2020
1 parent 0372124 commit ccb4ab5
Show file tree
Hide file tree
Showing 18 changed files with 478 additions and 305 deletions.
4 changes: 3 additions & 1 deletion make/test/JtregNativeHotspot.gmk
@@ -1,5 +1,5 @@
#
# Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2015, 2020, 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
Expand Down Expand Up @@ -880,8 +880,10 @@ endif
ifeq ($(call isTargetOs, windows), true)
BUILD_HOTSPOT_JTREG_EXECUTABLES_CFLAGS_exeFPRegs := -MT
BUILD_HOTSPOT_JTREG_EXCLUDE += exesigtest.c libterminatedThread.c
BUILD_HOTSPOT_JTREG_EXECUTABLES_LIBS_exejvm-test-launcher := jvm.lib

else
BUILD_HOTSPOT_JTREG_EXECUTABLES_LIBS_exejvm-test-launcher := -ljvm
BUILD_HOTSPOT_JTREG_LIBRARIES_LIBS_libbootclssearch_agent += -lpthread
BUILD_HOTSPOT_JTREG_LIBRARIES_LIBS_libsystemclssearch_agent += -lpthread
BUILD_HOTSPOT_JTREG_LIBRARIES_LIBS_libgetsysprop001 += -lpthread
Expand Down
2 changes: 1 addition & 1 deletion test/hotspot/jtreg/TEST.groups
Expand Up @@ -552,7 +552,7 @@ vmTestbase_largepages = \
vmTestbase/metaspace/stressDictionary/StressDictionary.java \
vmTestbase/metaspace/stressHierarchy/stressHierarchy001/TestDescription.java \
vmTestbase/metaspace/stressHierarchy/stressHierarchy011/TestDescription.java \
vmTestbase/metaspace/flags/maxMetaspaceSize/TestDescription.java \
vmTestbase/metaspace/flags/maxMetaspaceSize/TestMaxMetaspaceSize.java \
vmTestbase/metaspace/shrink_grow/ShrinkGrowTest/ShrinkGrowTest.java \
vmTestbase/metaspace/shrink_grow/ShrinkGrowMultiJVM/ShrinkGrowMultiJVM.java \
vmTestbase/metaspace/shrink_grow/CompressedClassSpaceSize/TestDescription.java
Expand Down
63 changes: 0 additions & 63 deletions test/hotspot/jtreg/runtime/7162488/Test7162488.sh

This file was deleted.

45 changes: 45 additions & 0 deletions test/hotspot/jtreg/runtime/7162488/TestUnrecognizedVmOption.java
@@ -0,0 +1,45 @@
/*
* Copyright (c) 2020, 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.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/

/*
* @test
* @bug 7162488
* @summary VM should print unrecognized -XX option
* @library /test/lib
* @run driver TestUnrecognizedVmOption
*/
import jdk.test.lib.process.OutputAnalyzer;
import jdk.test.lib.process.ProcessTools;

public class TestUnrecognizedVmOption {
static final String OPTION="this_is_not_an_option";

public static void main(String[] args) throws Exception {
ProcessBuilder pb =
ProcessTools.createJavaProcessBuilder(true, "-showversion", "-XX:" + OPTION);
new OutputAnalyzer(pb.start())
.shouldNotHaveExitValue(0)
.shouldContain("Unrecognized VM option")
.shouldContain(OPTION);
}
}
53 changes: 53 additions & 0 deletions test/hotspot/jtreg/runtime/StackGap/TestStackGap.java
@@ -0,0 +1,53 @@
/*
* Copyright (c) 2020, 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.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/

/*
* @test
* @summary Linux kernel stack guard should not cause segfaults on x86-32
* @modules java.base/jdk.internal.misc
* @library /test/lib
* @requires os.family == "linux"
* @compile T.java
* @run main/native TestStackGap
*/


import jdk.test.lib.Utils;
import jdk.test.lib.process.ProcessTools;
import jdk.test.lib.process.OutputAnalyzer;

public class TestStackGap {
public static void main(String args[]) throws Exception {
ProcessBuilder pb = ProcessTools.createNativeTestProcessBuilder("stack-gap");
pb.environment().put("CLASSPATH", Utils.TEST_CLASS_PATH);
new OutputAnalyzer(pb.start())
.shouldHaveExitValue(0);

pb = ProcessTools.createNativeTestProcessBuilder("stack-gap",
"-XX:+DisablePrimordialThreadGuardPages");
pb.environment().put("CLASSPATH", Utils.TEST_CLASS_PATH);
new OutputAnalyzer(pb.start())
.shouldHaveExitValue(0);
}
}

49 changes: 0 additions & 49 deletions test/hotspot/jtreg/runtime/StackGap/testme.sh

This file was deleted.

@@ -0,0 +1,52 @@
/*
* Copyright (c) 2020, 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.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/

/*
* @test
* @summary Stack guard pages should be installed correctly and removed when thread is detached
* @modules java.base/jdk.internal.misc
* @library /test/lib
* @requires os.family == "linux"
* @compile DoOverflow.java
* @run main/native TestStackGuardPages
*/
import jdk.test.lib.Utils;
import jdk.test.lib.process.ProcessTools;
import jdk.test.lib.process.OutputAnalyzer;


public class TestStackGuardPages {
public static void main(String args[]) throws Exception {
ProcessBuilder pb = ProcessTools.createNativeTestProcessBuilder("invoke",
"test_java_overflow");
pb.environment().put("CLASSPATH", Utils.TEST_CLASS_PATH);
new OutputAnalyzer(pb.start())
.shouldHaveExitValue(0);

pb = ProcessTools.createNativeTestProcessBuilder("invoke", "test_native_overflow");
pb.environment().put("CLASSPATH", Utils.TEST_CLASS_PATH);
new OutputAnalyzer(pb.start())
.shouldHaveExitValue(0);
}
}

51 changes: 0 additions & 51 deletions test/hotspot/jtreg/runtime/StackGuardPages/testme.sh

This file was deleted.

0 comments on commit ccb4ab5

Please sign in to comment.