Path: blob/master/test/functional/Jsr292/testng_8.xml
6000 views
<?xml version="1.0" encoding="UTF-8"?>12<!--3Copyright (c) 2016, 2018 IBM Corp. and others45This program and the accompanying materials are made available under6the terms of the Eclipse Public License 2.0 which accompanies this7distribution and is available at https://www.eclipse.org/legal/epl-2.0/8or the Apache License, Version 2.0 which accompanies this distribution and9is available at https://www.apache.org/licenses/LICENSE-2.0.1011This Source Code may also be made available under the following12Secondary Licenses when the conditions for such availability set13forth in the Eclipse Public License, v. 2.0 are satisfied: GNU14General Public License, version 2 with the GNU Classpath15Exception [1] and GNU General Public License, version 2 with the16OpenJDK Assembly Exception [2].1718[1] https://www.gnu.org/software/classpath/license.html19[2] http://openjdk.java.net/legal/assembly-exception.html2021SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 OR GPL-2.0 WITH Classpath-exception-2.0 OR LicenseRef-GPL-2.0 WITH Assembly-exception22-->2324<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">25<suite name="jsr292_Suite_SE80" parallel="none" verbose="2">26<listeners>27<listener class-name="org.openj9.test.util.IncludeExcludeTestAnnotationTransformer"/>28</listeners>29<test name="jsr292Test">30<classes>31<class name="com.ibm.j9.jsr292.AdaptorTests"/>32<class name="com.ibm.j9.jsr292.LookupInTests"/>33<class name="com.ibm.j9.jsr292.LookupAPITests_Find"/>34<class name="com.ibm.j9.jsr292.LookupAPITests_Unreflect"/>35<class name="com.ibm.j9.jsr292.Crash"/>36<class name="com.ibm.j9.jsr292.Catch"/>37<class name="com.ibm.j9.jsr292.MethodTypeTests"/>38<class name="com.ibm.j9.jsr292.MethodHandleProxiesTest"/>39<class name="com.ibm.j9.jsr292.MethodHandleTest"/>40<class name="com.ibm.j9.jsr292.AsTypeTest"/>41<class name="com.ibm.j9.jsr292.ConstantCallSiteTest"/>42<class name="com.ibm.j9.jsr292.VolatileCallSiteTest"/>43<class name="com.ibm.j9.jsr292.MutableCallSiteTest"/>44<class name="com.ibm.j9.jsr292.SwitchPointTest"/>45<class name="com.ibm.j9.jsr292.JSR292_MultiThreadedTests"/>46<class name="com.ibm.j9.jsr292.LookupAPITests_Bind"/>47<class name="com.ibm.j9.jsr292.InsertArgumentsTests"/>48<class name="com.ibm.j9.jsr292.PermuteTest"/>49<class name="com.ibm.j9.jsr292.FoldArgumentsTest"/>50<class name="com.ibm.j9.jsr292.GuardTest"/>51<class name="com.ibm.j9.jsr292.FilterArgumentsTest"/>52<class name="com.ibm.j9.jsr292.RestrictReceiverTest"/>53</classes>54</test>5556<!--57The following tests are used to check whether some specific methods are correctly compiled by JIT.58If the JIT is not ON or with count=0 parameter, then there is no point to enable these tests.59-->60<test name="jsr292Test_optional">61<classes>62<class name="com.ibm.j9.jsr292.VirtualHandleTest"/>63<class name="com.ibm.j9.jsr292.ConstructorHandleTest"/>64<class name="com.ibm.j9.jsr292.ReceiverBoundHandleTest"/>65<class name="com.ibm.j9.jsr292.InterfaceHandleTest"/>66<class name="com.ibm.j9.jsr292.DirectHandleTest"/>67</classes>68</test>6970<test name="jsr292BootstrapTest">71<classes>72<class name="com.ibm.j9.jsr292.bootstrap.Test_CallerSensitive"/>73</classes>74</test>7576<test name="jsr292_InDynTest">77<classes>78<class name="com.ibm.j9.jsr292.indyn.IndyTest"/>79<class name="com.ibm.j9.jsr292.indyn.ComplexIndyTest"/>80</classes>81</test>82</suite>8384