From 7191a0bdd1a4e5d370803788ccbc5a6c255b5420 Mon Sep 17 00:00:00 2001 From: Evgeny Gerashchenko Date: Thu, 5 Jul 2012 14:31:58 +0400 Subject: [PATCH] Using JDK_HEADERS compiler mode instead of BUILTINS (it's not necessary) in ExtensionFunctionsTest. --- .../jetbrains/jet/codegen/ExtensionFunctionsTest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/compiler/tests/org/jetbrains/jet/codegen/ExtensionFunctionsTest.java b/compiler/tests/org/jetbrains/jet/codegen/ExtensionFunctionsTest.java index 6adccef9854..a48f64dd8b3 100644 --- a/compiler/tests/org/jetbrains/jet/codegen/ExtensionFunctionsTest.java +++ b/compiler/tests/org/jetbrains/jet/codegen/ExtensionFunctionsTest.java @@ -73,27 +73,27 @@ public class ExtensionFunctionsTest extends CodegenTestCase { } public void testKtNested2() throws Exception { - createEnvironmentWithMockJdkAndIdeaAnnotations(CompilerSpecialMode.BUILTINS); + createEnvironmentWithMockJdkAndIdeaAnnotations(CompilerSpecialMode.JDK_HEADERS); blackBoxFile("extensionFunctions/nested2.kt"); } public void testKt606() throws Exception { - createEnvironmentWithMockJdkAndIdeaAnnotations(CompilerSpecialMode.BUILTINS); + createEnvironmentWithMockJdkAndIdeaAnnotations(CompilerSpecialMode.JDK_HEADERS); blackBoxFile("regressions/kt606.kt"); } public void testKt1061() throws Exception { - createEnvironmentWithMockJdkAndIdeaAnnotations(CompilerSpecialMode.BUILTINS); + createEnvironmentWithMockJdkAndIdeaAnnotations(CompilerSpecialMode.JDK_HEADERS); blackBoxFile("regressions/kt1061.kt"); } public void testKt1249() throws Exception { - createEnvironmentWithMockJdkAndIdeaAnnotations(CompilerSpecialMode.BUILTINS); + createEnvironmentWithMockJdkAndIdeaAnnotations(CompilerSpecialMode.JDK_HEADERS); blackBoxFile("regressions/kt1249.kt"); } public void testKt1290() throws Exception { - createEnvironmentWithMockJdkAndIdeaAnnotations(CompilerSpecialMode.BUILTINS); + createEnvironmentWithMockJdkAndIdeaAnnotations(CompilerSpecialMode.JDK_HEADERS); blackBoxFile("regressions/kt1290.kt"); }