< prev index next >

test/compiler/aot/cli/MultipleAOTLibraryTest.java

Print this page
rev 13457 : 8186537: remove unnecessary @requires from hotspot/compiler/aot tests
Reviewed-by: duke


   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
  26  * @requires vm.aot
  27  * @library /test/lib /testlibrary /
  28  * @modules java.base/jdk.internal.misc
  29  * @requires vm.bits == "64" & (os.arch == "amd64" | os.arch == "x86_64")
  30  * @build compiler.aot.cli.MultipleAOTLibraryTest
  31  *        compiler.aot.AotCompiler
  32  * @run driver compiler.aot.AotCompiler
  33  *      -libname libMultipleAOTLibraryTest1.so
  34  *      -class compiler.aot.HelloWorldPrinter
  35  *      -compile compiler.aot.HelloWorldPrinter.*
  36  *      -extraopt -XX:+UseCompressedOops
  37  * @run driver compiler.aot.AotCompiler
  38  *      -libname libMultipleAOTLibraryTest2.so
  39  *      -class compiler.aot.HelloWorldPrinter
  40  *      -compile compiler.aot.HelloWorldPrinter.print()V
  41  *      -extraopt -XX:+UseCompressedOops
  42  * @run driver compiler.aot.cli.MultipleAOTLibraryTest -XX:+UseCompressedOops
  43  * @run driver compiler.aot.AotCompiler -libname libMultipleAOTLibraryTest1.so
  44  *      -class compiler.aot.HelloWorldPrinter
  45  *      -compile compiler.aot.HelloWorldPrinter.*
  46  *      -extraopt -XX:-UseCompressedOops
  47  * @run driver compiler.aot.AotCompiler -libname libMultipleAOTLibraryTest2.so
  48  *      -class compiler.aot.HelloWorldPrinter
  49  *      -compile compiler.aot.HelloWorldPrinter.print()V




   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
  26  * @requires vm.aot
  27  * @library /test/lib /testlibrary /
  28  * @modules java.base/jdk.internal.misc

  29  * @build compiler.aot.cli.MultipleAOTLibraryTest
  30  *        compiler.aot.AotCompiler
  31  * @run driver compiler.aot.AotCompiler
  32  *      -libname libMultipleAOTLibraryTest1.so
  33  *      -class compiler.aot.HelloWorldPrinter
  34  *      -compile compiler.aot.HelloWorldPrinter.*
  35  *      -extraopt -XX:+UseCompressedOops
  36  * @run driver compiler.aot.AotCompiler
  37  *      -libname libMultipleAOTLibraryTest2.so
  38  *      -class compiler.aot.HelloWorldPrinter
  39  *      -compile compiler.aot.HelloWorldPrinter.print()V
  40  *      -extraopt -XX:+UseCompressedOops
  41  * @run driver compiler.aot.cli.MultipleAOTLibraryTest -XX:+UseCompressedOops
  42  * @run driver compiler.aot.AotCompiler -libname libMultipleAOTLibraryTest1.so
  43  *      -class compiler.aot.HelloWorldPrinter
  44  *      -compile compiler.aot.HelloWorldPrinter.*
  45  *      -extraopt -XX:-UseCompressedOops
  46  * @run driver compiler.aot.AotCompiler -libname libMultipleAOTLibraryTest2.so
  47  *      -class compiler.aot.HelloWorldPrinter
  48  *      -compile compiler.aot.HelloWorldPrinter.print()V


< prev index next >