< prev index next >

langtools/test/tools/javac/lambda/TestInvokeDynamic.java

Print this page




  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  * @bug 7194586 8003280 8006694 8010404
  27  * @summary Add lambda tests
  28  *  Add back-end support for invokedynamic
  29  *  temporarily workaround combo tests are causing time out in several platforms
  30  * @library ../lib
  31  * @modules jdk.compiler/com.sun.tools.classfile
  32  *          jdk.compiler/com.sun.tools.javac.api
  33  *          jdk.compiler/com.sun.tools.javac.code
  34  *          jdk.compiler/com.sun.tools.javac.jvm
  35  *          jdk.compiler/com.sun.tools.javac.tree
  36  *          jdk.compiler/com.sun.tools.javac.util
  37  * @build JavacTestingAbstractThreadedTest
  38  * @run main/othervm TestInvokeDynamic
  39  */
  40 
  41 // use /othervm to avoid jtreg timeout issues (CODETOOLS-7900047)
  42 // see JDK-8006746
  43 
  44 import java.io.File;
  45 import java.net.URI;
  46 import java.util.ArrayList;
  47 import java.util.Arrays;
  48 import java.util.Locale;
  49 
  50 import javax.tools.Diagnostic;
  51 import javax.tools.JavaFileObject;




  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  * @bug 7194586 8003280 8006694 8010404
  27  * @summary Add lambda tests
  28  *  Add back-end support for invokedynamic
  29  *  temporarily workaround combo tests are causing time out in several platforms
  30  * @library ../lib
  31  * @modules jdk.jdeps/com.sun.tools.classfile
  32  *          jdk.compiler/com.sun.tools.javac.api
  33  *          jdk.compiler/com.sun.tools.javac.code
  34  *          jdk.compiler/com.sun.tools.javac.jvm
  35  *          jdk.compiler/com.sun.tools.javac.tree
  36  *          jdk.compiler/com.sun.tools.javac.util
  37  * @build JavacTestingAbstractThreadedTest
  38  * @run main/othervm TestInvokeDynamic
  39  */
  40 
  41 // use /othervm to avoid jtreg timeout issues (CODETOOLS-7900047)
  42 // see JDK-8006746
  43 
  44 import java.io.File;
  45 import java.net.URI;
  46 import java.util.ArrayList;
  47 import java.util.Arrays;
  48 import java.util.Locale;
  49 
  50 import javax.tools.Diagnostic;
  51 import javax.tools.JavaFileObject;


< prev index next >