From 650e97f20040cd385545386a779444e8db5897c4 Mon Sep 17 00:00:00 2001 From: Alexey Tsvetkov Date: Tue, 3 Apr 2018 21:10:42 +0300 Subject: [PATCH] Temporarily turn off source map generation in JS IC tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Until IncrementalJsCompilerRunnerTestGenerated$ClassHierarchyAffected.testEnumEntryRemoved  is fixed --- .../incremental/AbstractIncrementalJsCompilerRunnerTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/incremental-compilation-impl/test/org/jetbrains/kotlin/incremental/AbstractIncrementalJsCompilerRunnerTest.kt b/compiler/incremental-compilation-impl/test/org/jetbrains/kotlin/incremental/AbstractIncrementalJsCompilerRunnerTest.kt index d322832def9..047a9e306c1 100644 --- a/compiler/incremental-compilation-impl/test/org/jetbrains/kotlin/incremental/AbstractIncrementalJsCompilerRunnerTest.kt +++ b/compiler/incremental-compilation-impl/test/org/jetbrains/kotlin/incremental/AbstractIncrementalJsCompilerRunnerTest.kt @@ -37,7 +37,7 @@ abstract class AbstractIncrementalJsCompilerRunnerTest : AbstractIncrementalComp override fun createCompilerArguments(destinationDir: File, testDir: File): K2JSCompilerArguments = K2JSCompilerArguments().apply { outputFile = File(destinationDir, "${testDir.name}.js").path - sourceMap = true + sourceMap = false metaInfo = true } } \ No newline at end of file