/* * 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. * * 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. */ package org.graalvm.compiler.truffle.test; import org.graalvm.compiler.truffle.test.builtins.SLAssertFalseBuiltinFactory; import org.graalvm.compiler.truffle.test.builtins.SLAssertTrueBuiltinFactory; import org.graalvm.compiler.truffle.test.builtins.SLCallFunctionsWithBuiltinFactory; import org.graalvm.compiler.truffle.test.builtins.SLCallUntilOptimizedBuiltinFactory; import org.graalvm.compiler.truffle.test.builtins.SLCallWithOptionOverrideBuiltinFactory; import org.graalvm.compiler.truffle.test.builtins.SLDeoptimizeWhenCompiledBuiltinFactory; import org.graalvm.compiler.truffle.test.builtins.SLDisableSplittingBuiltinFactory; import org.graalvm.compiler.truffle.test.builtins.SLGetOptionBuiltinFactory; import org.graalvm.compiler.truffle.test.builtins.SLIsCompilationConstantBuiltinFactory; import org.graalvm.compiler.truffle.test.builtins.SLIsOptimizedBuiltinFactory; import org.graalvm.compiler.truffle.test.builtins.SLTestTruffleBoundary01BuiltinFactory; import org.graalvm.compiler.truffle.test.builtins.SLWaitForOptimizationBuiltinFactory; import org.junit.BeforeClass; import org.junit.Test; import org.junit.runner.RunWith; import com.oracle.truffle.sl.test.SLTestRunner; import com.oracle.truffle.sl.test.SLTestSuite; @RunWith(SLTestRunner.class) @SLTestSuite({"sl"}) public class SLTruffleGraalTestSuite extends TestWithSynchronousCompiling { public static void main(String[] args) throws Exception { SLTestRunner.runInMain(SLTruffleGraalTestSuite.class, args); } @BeforeClass public static void setupTestRunner() { SLTestRunner.installBuiltin(SLGetOptionBuiltinFactory.getInstance()); SLTestRunner.installBuiltin(SLIsOptimizedBuiltinFactory.getInstance()); SLTestRunner.installBuiltin(SLWaitForOptimizationBuiltinFactory.getInstance()); SLTestRunner.installBuiltin(SLDisableSplittingBuiltinFactory.getInstance()); SLTestRunner.installBuiltin(SLCallUntilOptimizedBuiltinFactory.getInstance()); SLTestRunner.installBuiltin(SLCallWithOptionOverrideBuiltinFactory.getInstance()); SLTestRunner.installBuiltin(SLCallFunctionsWithBuiltinFactory.getInstance()); SLTestRunner.installBuiltin(SLIsCompilationConstantBuiltinFactory.getInstance()); SLTestRunner.installBuiltin(SLDeoptimizeWhenCompiledBuiltinFactory.getInstance()); SLTestRunner.installBuiltin(SLAssertTrueBuiltinFactory.getInstance()); SLTestRunner.installBuiltin(SLAssertFalseBuiltinFactory.getInstance()); /* test specific builtins */ SLTestRunner.installBuiltin(SLTestTruffleBoundary01BuiltinFactory.getInstance()); } /* * Our "mx unittest" command looks for methods that are annotated with @Test. By just defining * an empty method, this class gets included and the test suite is properly executed. */ @Test public void unittest() { } }