Minor: replace IGNORE_BACKEND with TARGET_BACKEND for the test what should be run only on JVM

The test was written to check the case for Platform Types which now exists only on JVM.
This commit is contained in:
Zalim Bashorov
2017-10-19 19:35:06 +03:00
parent 6a659f33b5
commit f9809d5a73
2 changed files with 1 additions and 13 deletions
@@ -1,4 +1,4 @@
// IGNORE_BACKEND: JS, NATIVE
// TARGET_BACKEND: JVM
// FILE: M.java
@@ -1178,18 +1178,6 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
doTest(fileName);
}
@TestMetadata("kt19767_3.kt")
public void testKt19767_3() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/boxingOptimization/kt19767_3.kt");
try {
doTest(fileName);
}
catch (Throwable ignore) {
return;
}
throw new AssertionError("Looks like this test can be unmuted. Remove IGNORE_BACKEND directive for that.");
}
@TestMetadata("kt19767_chain.kt")
public void testKt19767_chain() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/boxingOptimization/kt19767_chain.kt");