From a53fa0dfbf1a6908fddb7bb6d929bf47f9088e41 Mon Sep 17 00:00:00 2001 From: Alexander Udalov Date: Thu, 25 Apr 2019 14:21:35 +0200 Subject: [PATCH] Minor, optimize newly added tests on unsigned intrinsics Remove "JVM_TARGET: 1.6" directive from box tests and remove tests with JVM target 1.8. By default, box tests are run with JVM target 1.6, and there's an additional configuration `codegenTarget8Jvm8Test` that runs all box tests with JVM target 1.8. Also, remove box tests with JVM target 1.6. They aren't needed because even if we manage to generate incorrect bytecode with target 1.6, the corresponding box tests will catch that --- ...Compare_jvm16.kt => unsignedIntCompare.kt} | 1 - .../unsignedTypes/unsignedIntCompare_jvm18.kt | 15 ----- ...ntDivide_jvm16.kt => unsignedIntDivide.kt} | 1 - .../unsignedTypes/unsignedIntDivide_jvm18.kt | 15 ----- ...inder_jvm16.kt => unsignedIntRemainder.kt} | 1 - .../unsignedIntRemainder_jvm18.kt | 16 ----- ...ompare_jvm16.kt => unsignedLongCompare.kt} | 1 - .../unsignedLongCompare_jvm18.kt | 15 ----- ...gDivide_jvm16.kt => unsignedLongDivide.kt} | 3 +- .../unsignedTypes/unsignedLongDivide_jvm18.kt | 19 ------ ...nder_jvm16.kt => unsignedLongRemainder.kt} | 3 +- .../unsignedLongRemainder_jvm18.kt | 16 ----- .../unsignedTypes/unsignedIntCompare_jvm16.kt | 16 ----- .../unsignedTypes/unsignedIntDivide_jvm16.kt | 16 ----- .../unsignedIntRemainder_jvm16.kt | 17 ----- .../unsignedLongCompare_jvm16.kt | 16 ----- .../unsignedTypes/unsignedLongDivide_jvm16.kt | 16 ----- .../unsignedLongRemainder_jvm16.kt | 17 ----- .../codegen/BlackBoxCodegenTestGenerated.java | 66 +++++-------------- .../codegen/BytecodeTextTestGenerated.java | 30 --------- .../LightAnalysisModeTestGenerated.java | 66 +++++-------------- .../ir/IrBlackBoxCodegenTestGenerated.java | 66 +++++-------------- .../ir/IrBytecodeTextTestGenerated.java | 30 --------- .../IrJsCodegenBoxTestGenerated.java | 66 +++++-------------- .../semantics/JsCodegenBoxTestGenerated.java | 66 +++++-------------- 25 files changed, 92 insertions(+), 502 deletions(-) rename compiler/testData/codegen/box/unsignedTypes/{unsignedIntCompare_jvm16.kt => unsignedIntCompare.kt} (91%) delete mode 100644 compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare_jvm18.kt rename compiler/testData/codegen/box/unsignedTypes/{unsignedIntDivide_jvm16.kt => unsignedIntDivide.kt} (92%) delete mode 100644 compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide_jvm18.kt rename compiler/testData/codegen/box/unsignedTypes/{unsignedIntRemainder_jvm16.kt => unsignedIntRemainder.kt} (92%) delete mode 100644 compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder_jvm18.kt rename compiler/testData/codegen/box/unsignedTypes/{unsignedLongCompare_jvm16.kt => unsignedLongCompare.kt} (91%) delete mode 100644 compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare_jvm18.kt rename compiler/testData/codegen/box/unsignedTypes/{unsignedLongDivide_jvm16.kt => unsignedLongDivide.kt} (94%) delete mode 100644 compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide_jvm18.kt rename compiler/testData/codegen/box/unsignedTypes/{unsignedLongRemainder_jvm16.kt => unsignedLongRemainder.kt} (92%) delete mode 100644 compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder_jvm18.kt delete mode 100644 compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntCompare_jvm16.kt delete mode 100644 compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntDivide_jvm16.kt delete mode 100644 compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntRemainder_jvm16.kt delete mode 100644 compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongCompare_jvm16.kt delete mode 100644 compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongDivide_jvm16.kt delete mode 100644 compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongRemainder_jvm16.kt diff --git a/compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare_jvm16.kt b/compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare.kt similarity index 91% rename from compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare_jvm16.kt rename to compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare.kt index a929c668bc4..0bdaf0a4ed1 100644 --- a/compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare_jvm16.kt +++ b/compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare.kt @@ -1,5 +1,4 @@ // KJS_WITH_FULL_RUNTIME -// JVM_TARGET: 1.6 // WITH_RUNTIME // IGNORE_BACKEND: JVM_IR diff --git a/compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare_jvm18.kt b/compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare_jvm18.kt deleted file mode 100644 index 538345d6f2f..00000000000 --- a/compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare_jvm18.kt +++ /dev/null @@ -1,15 +0,0 @@ -// KJS_WITH_FULL_RUNTIME -// JVM_TARGET: 1.8 -// WITH_RUNTIME -// IGNORE_BACKEND: JVM_IR - -val ua = 1234U -val ub = 5678U - -fun box(): String { - if (ua.compareTo(ub) > 0) { - throw AssertionError() - } - - return "OK" -} diff --git a/compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide_jvm16.kt b/compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide.kt similarity index 92% rename from compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide_jvm16.kt rename to compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide.kt index 2a227accb42..e8d3654ffbf 100644 --- a/compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide_jvm16.kt +++ b/compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide.kt @@ -1,5 +1,4 @@ // KJS_WITH_FULL_RUNTIME -// JVM_TARGET: 1.6 // WITH_RUNTIME // IGNORE_BACKEND: JVM_IR diff --git a/compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide_jvm18.kt b/compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide_jvm18.kt deleted file mode 100644 index 95f55edde46..00000000000 --- a/compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide_jvm18.kt +++ /dev/null @@ -1,15 +0,0 @@ -// KJS_WITH_FULL_RUNTIME -// JVM_TARGET: 1.8 -// WITH_RUNTIME -// IGNORE_BACKEND: JVM_IR - -val ua = 1234U -val ub = 5678U -val u = ua * ub - -fun box(): String { - val div = u / ua - if (div != ub) throw AssertionError("$div") - - return "OK" -} diff --git a/compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder_jvm16.kt b/compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder.kt similarity index 92% rename from compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder_jvm16.kt rename to compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder.kt index cea174c1621..bfc8b87e93b 100644 --- a/compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder_jvm16.kt +++ b/compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder.kt @@ -1,5 +1,4 @@ // KJS_WITH_FULL_RUNTIME -// JVM_TARGET: 1.6 // WITH_RUNTIME // IGNORE_BACKEND: JVM_IR diff --git a/compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder_jvm18.kt b/compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder_jvm18.kt deleted file mode 100644 index f05ae16c4bc..00000000000 --- a/compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder_jvm18.kt +++ /dev/null @@ -1,16 +0,0 @@ -// KJS_WITH_FULL_RUNTIME -// JVM_TARGET: 1.8 -// WITH_RUNTIME -// IGNORE_BACKEND: JVM_IR - -val ua = 1234U -val ub = 5678U -val uc = 3456U -val u = ua * ub + uc - -fun box(): String { - val rem = u % ub - if (rem != uc) throw AssertionError("$rem") - - return "OK" -} diff --git a/compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare_jvm16.kt b/compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare.kt similarity index 91% rename from compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare_jvm16.kt rename to compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare.kt index b3fee497f0a..95a535a53a9 100644 --- a/compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare_jvm16.kt +++ b/compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare.kt @@ -1,5 +1,4 @@ // KJS_WITH_FULL_RUNTIME -// JVM_TARGET: 1.6 // WITH_RUNTIME // IGNORE_BACKEND: JVM_IR diff --git a/compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare_jvm18.kt b/compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare_jvm18.kt deleted file mode 100644 index e770e2b0263..00000000000 --- a/compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare_jvm18.kt +++ /dev/null @@ -1,15 +0,0 @@ -// KJS_WITH_FULL_RUNTIME -// JVM_TARGET: 1.8 -// WITH_RUNTIME -// IGNORE_BACKEND: JVM_IR - -val ua = 1234UL -val ub = 5678UL - -fun box(): String { - if (ua.compareTo(ub) > 0) { - throw AssertionError() - } - - return "OK" -} diff --git a/compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide_jvm16.kt b/compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide.kt similarity index 94% rename from compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide_jvm16.kt rename to compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide.kt index 9886756d552..aa5981c485e 100644 --- a/compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide_jvm16.kt +++ b/compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide.kt @@ -1,5 +1,4 @@ // KJS_WITH_FULL_RUNTIME -// JVM_TARGET: 1.6 // WITH_RUNTIME // IGNORE_BACKEND: JVM_IR @@ -16,4 +15,4 @@ fun box(): String { if (div != ub) throw AssertionError("$div") return "OK" -} \ No newline at end of file +} diff --git a/compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide_jvm18.kt b/compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide_jvm18.kt deleted file mode 100644 index fa757c17e48..00000000000 --- a/compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide_jvm18.kt +++ /dev/null @@ -1,19 +0,0 @@ -// KJS_WITH_FULL_RUNTIME -// JVM_TARGET: 1.8 -// WITH_RUNTIME -// IGNORE_BACKEND: JVM_IR - -val ua = 1234UL -val ub = 5678UL -val uai = ua.toUInt() -val u = ua * ub - -fun box(): String { - val div = u / ua - if (div != ub) throw AssertionError("$div") - - val divInt = u / uai - if (div != ub) throw AssertionError("$div") - - return "OK" -} \ No newline at end of file diff --git a/compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder_jvm16.kt b/compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder.kt similarity index 92% rename from compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder_jvm16.kt rename to compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder.kt index 74b0120527a..06bdb94d308 100644 --- a/compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder_jvm16.kt +++ b/compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder.kt @@ -1,5 +1,4 @@ // KJS_WITH_FULL_RUNTIME -// JVM_TARGET: 1.6 // WITH_RUNTIME // IGNORE_BACKEND: JVM_IR @@ -13,4 +12,4 @@ fun box(): String { if (rem != uc) throw AssertionError("$rem") return "OK" -} \ No newline at end of file +} diff --git a/compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder_jvm18.kt b/compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder_jvm18.kt deleted file mode 100644 index 8fc2c579ebe..00000000000 --- a/compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder_jvm18.kt +++ /dev/null @@ -1,16 +0,0 @@ -// KJS_WITH_FULL_RUNTIME -// JVM_TARGET: 1.8 -// WITH_RUNTIME -// IGNORE_BACKEND: JVM_IR - -val ua = 1234UL -val ub = 5678UL -val uc = 3456UL -val u = ua * ub + uc - -fun box(): String { - val rem = u % ub - if (rem != uc) throw AssertionError("$rem") - - return "OK" -} \ No newline at end of file diff --git a/compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntCompare_jvm16.kt b/compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntCompare_jvm16.kt deleted file mode 100644 index b1b74c13ebf..00000000000 --- a/compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntCompare_jvm16.kt +++ /dev/null @@ -1,16 +0,0 @@ -// JVM_TARGET: 1.6 -// WITH_RUNTIME -// IGNORE_BACKEND: JVM_IR - -val ua = 1234U -val ub = 5678U - -fun box(): String { - if (ua.compareTo(ub) > 0) { - throw AssertionError() - } - - return "OK" -} - -// 1 INVOKESTATIC kotlin/UnsignedKt.uintCompare diff --git a/compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntDivide_jvm16.kt b/compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntDivide_jvm16.kt deleted file mode 100644 index 5f976391fd3..00000000000 --- a/compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntDivide_jvm16.kt +++ /dev/null @@ -1,16 +0,0 @@ -// JVM_TARGET: 1.6 -// WITH_RUNTIME -// IGNORE_BACKEND: JVM_IR - -val ua = 1234U -val ub = 5678U -val u = ua * ub - -fun box(): String { - val div = u / ua - if (div != ub) throw AssertionError("$div") - - return "OK" -} - -// 1 INVOKESTATIC kotlin/UnsignedKt.uintDivide diff --git a/compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntRemainder_jvm16.kt b/compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntRemainder_jvm16.kt deleted file mode 100644 index 11fa209e68b..00000000000 --- a/compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntRemainder_jvm16.kt +++ /dev/null @@ -1,17 +0,0 @@ -// JVM_TARGET: 1.6 -// WITH_RUNTIME -// IGNORE_BACKEND: JVM_IR - -val ua = 1234U -val ub = 5678U -val uc = 3456U -val u = ua * ub + uc - -fun box(): String { - val rem = u % ub - if (rem != uc) throw AssertionError("$rem") - - return "OK" -} - -// 1 kotlin/UnsignedKt.uintRemainder diff --git a/compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongCompare_jvm16.kt b/compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongCompare_jvm16.kt deleted file mode 100644 index 68100a103dd..00000000000 --- a/compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongCompare_jvm16.kt +++ /dev/null @@ -1,16 +0,0 @@ -// JVM_TARGET: 1.6 -// WITH_RUNTIME -// IGNORE_BACKEND: JVM_IR - -val ua = 1234UL -val ub = 5678UL - -fun box(): String { - if (ua.compareTo(ub) > 0) { - throw AssertionError() - } - - return "OK" -} - -// 1 INVOKESTATIC kotlin/UnsignedKt.ulongCompare diff --git a/compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongDivide_jvm16.kt b/compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongDivide_jvm16.kt deleted file mode 100644 index ede5f25489b..00000000000 --- a/compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongDivide_jvm16.kt +++ /dev/null @@ -1,16 +0,0 @@ -// JVM_TARGET: 1.6 -// WITH_RUNTIME -// IGNORE_BACKEND: JVM_IR - -val ua = 1234UL -val ub = 5678UL -val u = ua * ub - -fun box(): String { - val div = u / ua - if (div != ub) throw AssertionError("$div") - - return "OK" -} - -// 1 INVOKESTATIC kotlin/UnsignedKt.ulongDivide \ No newline at end of file diff --git a/compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongRemainder_jvm16.kt b/compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongRemainder_jvm16.kt deleted file mode 100644 index 572ed22e742..00000000000 --- a/compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongRemainder_jvm16.kt +++ /dev/null @@ -1,17 +0,0 @@ -// JVM_TARGET: 1.6 -// WITH_RUNTIME -// IGNORE_BACKEND: JVM_IR - -val ua = 1234UL -val ub = 5678UL -val uc = 3456UL -val u = ua * ub + uc - -fun box(): String { - val rem = u % ub - if (rem != uc) throw AssertionError("$rem") - - return "OK" -} - -// 1 kotlin/UnsignedKt.ulongRemainder \ No newline at end of file diff --git a/compiler/tests/org/jetbrains/kotlin/codegen/BlackBoxCodegenTestGenerated.java b/compiler/tests/org/jetbrains/kotlin/codegen/BlackBoxCodegenTestGenerated.java index c4141aa75ce..64ceabe1735 100644 --- a/compiler/tests/org/jetbrains/kotlin/codegen/BlackBoxCodegenTestGenerated.java +++ b/compiler/tests/org/jetbrains/kotlin/codegen/BlackBoxCodegenTestGenerated.java @@ -25023,34 +25023,19 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest { runTest("compiler/testData/codegen/box/unsignedTypes/signedToUnsignedLiteralConversion.kt"); } - @TestMetadata("unsignedIntCompare_jvm16.kt") - public void testUnsignedIntCompare_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare_jvm16.kt"); + @TestMetadata("unsignedIntCompare.kt") + public void testUnsignedIntCompare() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare.kt"); } - @TestMetadata("unsignedIntCompare_jvm18.kt") - public void testUnsignedIntCompare_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare_jvm18.kt"); + @TestMetadata("unsignedIntDivide.kt") + public void testUnsignedIntDivide() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide.kt"); } - @TestMetadata("unsignedIntDivide_jvm16.kt") - public void testUnsignedIntDivide_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide_jvm16.kt"); - } - - @TestMetadata("unsignedIntDivide_jvm18.kt") - public void testUnsignedIntDivide_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide_jvm18.kt"); - } - - @TestMetadata("unsignedIntRemainder_jvm16.kt") - public void testUnsignedIntRemainder_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder_jvm16.kt"); - } - - @TestMetadata("unsignedIntRemainder_jvm18.kt") - public void testUnsignedIntRemainder_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder_jvm18.kt"); + @TestMetadata("unsignedIntRemainder.kt") + public void testUnsignedIntRemainder() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder.kt"); } @TestMetadata("unsignedLiteralsForMaxLongValue.kt") @@ -25063,34 +25048,19 @@ public class BlackBoxCodegenTestGenerated extends AbstractBlackBoxCodegenTest { runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLiteralsWithSignedOverflow.kt"); } - @TestMetadata("unsignedLongCompare_jvm16.kt") - public void testUnsignedLongCompare_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare_jvm16.kt"); + @TestMetadata("unsignedLongCompare.kt") + public void testUnsignedLongCompare() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare.kt"); } - @TestMetadata("unsignedLongCompare_jvm18.kt") - public void testUnsignedLongCompare_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare_jvm18.kt"); + @TestMetadata("unsignedLongDivide.kt") + public void testUnsignedLongDivide() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide.kt"); } - @TestMetadata("unsignedLongDivide_jvm16.kt") - public void testUnsignedLongDivide_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide_jvm16.kt"); - } - - @TestMetadata("unsignedLongDivide_jvm18.kt") - public void testUnsignedLongDivide_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide_jvm18.kt"); - } - - @TestMetadata("unsignedLongRemainder_jvm16.kt") - public void testUnsignedLongRemainder_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder_jvm16.kt"); - } - - @TestMetadata("unsignedLongRemainder_jvm18.kt") - public void testUnsignedLongRemainder_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder_jvm18.kt"); + @TestMetadata("unsignedLongRemainder.kt") + public void testUnsignedLongRemainder() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder.kt"); } @TestMetadata("unsignedRangeIterator.kt") diff --git a/compiler/tests/org/jetbrains/kotlin/codegen/BytecodeTextTestGenerated.java b/compiler/tests/org/jetbrains/kotlin/codegen/BytecodeTextTestGenerated.java index 4d28aac4c31..3f13aaaa688 100644 --- a/compiler/tests/org/jetbrains/kotlin/codegen/BytecodeTextTestGenerated.java +++ b/compiler/tests/org/jetbrains/kotlin/codegen/BytecodeTextTestGenerated.java @@ -3530,61 +3530,31 @@ public class BytecodeTextTestGenerated extends AbstractBytecodeTextTest { KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("compiler/testData/codegen/bytecodeText/unsignedTypes"), Pattern.compile("^(.+)\\.kt$"), TargetBackend.JVM, true); } - @TestMetadata("unsignedIntCompare_jvm16.kt") - public void testUnsignedIntCompare_jvm16() throws Exception { - runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntCompare_jvm16.kt"); - } - @TestMetadata("unsignedIntCompare_jvm18.kt") public void testUnsignedIntCompare_jvm18() throws Exception { runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntCompare_jvm18.kt"); } - @TestMetadata("unsignedIntDivide_jvm16.kt") - public void testUnsignedIntDivide_jvm16() throws Exception { - runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntDivide_jvm16.kt"); - } - @TestMetadata("unsignedIntDivide_jvm18.kt") public void testUnsignedIntDivide_jvm18() throws Exception { runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntDivide_jvm18.kt"); } - @TestMetadata("unsignedIntRemainder_jvm16.kt") - public void testUnsignedIntRemainder_jvm16() throws Exception { - runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntRemainder_jvm16.kt"); - } - @TestMetadata("unsignedIntRemainder_jvm18.kt") public void testUnsignedIntRemainder_jvm18() throws Exception { runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntRemainder_jvm18.kt"); } - @TestMetadata("unsignedLongCompare_jvm16.kt") - public void testUnsignedLongCompare_jvm16() throws Exception { - runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongCompare_jvm16.kt"); - } - @TestMetadata("unsignedLongCompare_jvm18.kt") public void testUnsignedLongCompare_jvm18() throws Exception { runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongCompare_jvm18.kt"); } - @TestMetadata("unsignedLongDivide_jvm16.kt") - public void testUnsignedLongDivide_jvm16() throws Exception { - runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongDivide_jvm16.kt"); - } - @TestMetadata("unsignedLongDivide_jvm18.kt") public void testUnsignedLongDivide_jvm18() throws Exception { runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongDivide_jvm18.kt"); } - @TestMetadata("unsignedLongRemainder_jvm16.kt") - public void testUnsignedLongRemainder_jvm16() throws Exception { - runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongRemainder_jvm16.kt"); - } - @TestMetadata("unsignedLongRemainder_jvm18.kt") public void testUnsignedLongRemainder_jvm18() throws Exception { runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongRemainder_jvm18.kt"); diff --git a/compiler/tests/org/jetbrains/kotlin/codegen/LightAnalysisModeTestGenerated.java b/compiler/tests/org/jetbrains/kotlin/codegen/LightAnalysisModeTestGenerated.java index ef9f695c383..f5d57a02f5b 100644 --- a/compiler/tests/org/jetbrains/kotlin/codegen/LightAnalysisModeTestGenerated.java +++ b/compiler/tests/org/jetbrains/kotlin/codegen/LightAnalysisModeTestGenerated.java @@ -25023,34 +25023,19 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes runTest("compiler/testData/codegen/box/unsignedTypes/signedToUnsignedLiteralConversion.kt"); } - @TestMetadata("unsignedIntCompare_jvm16.kt") - public void testUnsignedIntCompare_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare_jvm16.kt"); + @TestMetadata("unsignedIntCompare.kt") + public void testUnsignedIntCompare() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare.kt"); } - @TestMetadata("unsignedIntCompare_jvm18.kt") - public void testUnsignedIntCompare_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare_jvm18.kt"); + @TestMetadata("unsignedIntDivide.kt") + public void testUnsignedIntDivide() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide.kt"); } - @TestMetadata("unsignedIntDivide_jvm16.kt") - public void testUnsignedIntDivide_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide_jvm16.kt"); - } - - @TestMetadata("unsignedIntDivide_jvm18.kt") - public void testUnsignedIntDivide_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide_jvm18.kt"); - } - - @TestMetadata("unsignedIntRemainder_jvm16.kt") - public void testUnsignedIntRemainder_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder_jvm16.kt"); - } - - @TestMetadata("unsignedIntRemainder_jvm18.kt") - public void testUnsignedIntRemainder_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder_jvm18.kt"); + @TestMetadata("unsignedIntRemainder.kt") + public void testUnsignedIntRemainder() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder.kt"); } @TestMetadata("unsignedLiteralsForMaxLongValue.kt") @@ -25063,34 +25048,19 @@ public class LightAnalysisModeTestGenerated extends AbstractLightAnalysisModeTes runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLiteralsWithSignedOverflow.kt"); } - @TestMetadata("unsignedLongCompare_jvm16.kt") - public void testUnsignedLongCompare_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare_jvm16.kt"); + @TestMetadata("unsignedLongCompare.kt") + public void testUnsignedLongCompare() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare.kt"); } - @TestMetadata("unsignedLongCompare_jvm18.kt") - public void testUnsignedLongCompare_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare_jvm18.kt"); + @TestMetadata("unsignedLongDivide.kt") + public void testUnsignedLongDivide() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide.kt"); } - @TestMetadata("unsignedLongDivide_jvm16.kt") - public void testUnsignedLongDivide_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide_jvm16.kt"); - } - - @TestMetadata("unsignedLongDivide_jvm18.kt") - public void testUnsignedLongDivide_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide_jvm18.kt"); - } - - @TestMetadata("unsignedLongRemainder_jvm16.kt") - public void testUnsignedLongRemainder_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder_jvm16.kt"); - } - - @TestMetadata("unsignedLongRemainder_jvm18.kt") - public void testUnsignedLongRemainder_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder_jvm18.kt"); + @TestMetadata("unsignedLongRemainder.kt") + public void testUnsignedLongRemainder() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder.kt"); } @TestMetadata("unsignedRangeIterator.kt") diff --git a/compiler/tests/org/jetbrains/kotlin/codegen/ir/IrBlackBoxCodegenTestGenerated.java b/compiler/tests/org/jetbrains/kotlin/codegen/ir/IrBlackBoxCodegenTestGenerated.java index e67246fbb88..be93367ed8c 100644 --- a/compiler/tests/org/jetbrains/kotlin/codegen/ir/IrBlackBoxCodegenTestGenerated.java +++ b/compiler/tests/org/jetbrains/kotlin/codegen/ir/IrBlackBoxCodegenTestGenerated.java @@ -25043,34 +25043,19 @@ public class IrBlackBoxCodegenTestGenerated extends AbstractIrBlackBoxCodegenTes runTest("compiler/testData/codegen/box/unsignedTypes/signedToUnsignedLiteralConversion.kt"); } - @TestMetadata("unsignedIntCompare_jvm16.kt") - public void testUnsignedIntCompare_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare_jvm16.kt"); + @TestMetadata("unsignedIntCompare.kt") + public void testUnsignedIntCompare() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare.kt"); } - @TestMetadata("unsignedIntCompare_jvm18.kt") - public void testUnsignedIntCompare_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare_jvm18.kt"); + @TestMetadata("unsignedIntDivide.kt") + public void testUnsignedIntDivide() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide.kt"); } - @TestMetadata("unsignedIntDivide_jvm16.kt") - public void testUnsignedIntDivide_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide_jvm16.kt"); - } - - @TestMetadata("unsignedIntDivide_jvm18.kt") - public void testUnsignedIntDivide_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide_jvm18.kt"); - } - - @TestMetadata("unsignedIntRemainder_jvm16.kt") - public void testUnsignedIntRemainder_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder_jvm16.kt"); - } - - @TestMetadata("unsignedIntRemainder_jvm18.kt") - public void testUnsignedIntRemainder_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder_jvm18.kt"); + @TestMetadata("unsignedIntRemainder.kt") + public void testUnsignedIntRemainder() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder.kt"); } @TestMetadata("unsignedLiteralsForMaxLongValue.kt") @@ -25083,34 +25068,19 @@ public class IrBlackBoxCodegenTestGenerated extends AbstractIrBlackBoxCodegenTes runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLiteralsWithSignedOverflow.kt"); } - @TestMetadata("unsignedLongCompare_jvm16.kt") - public void testUnsignedLongCompare_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare_jvm16.kt"); + @TestMetadata("unsignedLongCompare.kt") + public void testUnsignedLongCompare() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare.kt"); } - @TestMetadata("unsignedLongCompare_jvm18.kt") - public void testUnsignedLongCompare_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare_jvm18.kt"); + @TestMetadata("unsignedLongDivide.kt") + public void testUnsignedLongDivide() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide.kt"); } - @TestMetadata("unsignedLongDivide_jvm16.kt") - public void testUnsignedLongDivide_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide_jvm16.kt"); - } - - @TestMetadata("unsignedLongDivide_jvm18.kt") - public void testUnsignedLongDivide_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide_jvm18.kt"); - } - - @TestMetadata("unsignedLongRemainder_jvm16.kt") - public void testUnsignedLongRemainder_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder_jvm16.kt"); - } - - @TestMetadata("unsignedLongRemainder_jvm18.kt") - public void testUnsignedLongRemainder_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder_jvm18.kt"); + @TestMetadata("unsignedLongRemainder.kt") + public void testUnsignedLongRemainder() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder.kt"); } @TestMetadata("unsignedRangeIterator.kt") diff --git a/compiler/tests/org/jetbrains/kotlin/codegen/ir/IrBytecodeTextTestGenerated.java b/compiler/tests/org/jetbrains/kotlin/codegen/ir/IrBytecodeTextTestGenerated.java index e448271d7ea..b7850738bad 100644 --- a/compiler/tests/org/jetbrains/kotlin/codegen/ir/IrBytecodeTextTestGenerated.java +++ b/compiler/tests/org/jetbrains/kotlin/codegen/ir/IrBytecodeTextTestGenerated.java @@ -3540,61 +3540,31 @@ public class IrBytecodeTextTestGenerated extends AbstractIrBytecodeTextTest { KotlinTestUtils.assertAllTestsPresentByMetadata(this.getClass(), new File("compiler/testData/codegen/bytecodeText/unsignedTypes"), Pattern.compile("^(.+)\\.kt$"), TargetBackend.JVM_IR, true); } - @TestMetadata("unsignedIntCompare_jvm16.kt") - public void testUnsignedIntCompare_jvm16() throws Exception { - runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntCompare_jvm16.kt"); - } - @TestMetadata("unsignedIntCompare_jvm18.kt") public void testUnsignedIntCompare_jvm18() throws Exception { runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntCompare_jvm18.kt"); } - @TestMetadata("unsignedIntDivide_jvm16.kt") - public void testUnsignedIntDivide_jvm16() throws Exception { - runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntDivide_jvm16.kt"); - } - @TestMetadata("unsignedIntDivide_jvm18.kt") public void testUnsignedIntDivide_jvm18() throws Exception { runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntDivide_jvm18.kt"); } - @TestMetadata("unsignedIntRemainder_jvm16.kt") - public void testUnsignedIntRemainder_jvm16() throws Exception { - runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntRemainder_jvm16.kt"); - } - @TestMetadata("unsignedIntRemainder_jvm18.kt") public void testUnsignedIntRemainder_jvm18() throws Exception { runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedIntRemainder_jvm18.kt"); } - @TestMetadata("unsignedLongCompare_jvm16.kt") - public void testUnsignedLongCompare_jvm16() throws Exception { - runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongCompare_jvm16.kt"); - } - @TestMetadata("unsignedLongCompare_jvm18.kt") public void testUnsignedLongCompare_jvm18() throws Exception { runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongCompare_jvm18.kt"); } - @TestMetadata("unsignedLongDivide_jvm16.kt") - public void testUnsignedLongDivide_jvm16() throws Exception { - runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongDivide_jvm16.kt"); - } - @TestMetadata("unsignedLongDivide_jvm18.kt") public void testUnsignedLongDivide_jvm18() throws Exception { runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongDivide_jvm18.kt"); } - @TestMetadata("unsignedLongRemainder_jvm16.kt") - public void testUnsignedLongRemainder_jvm16() throws Exception { - runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongRemainder_jvm16.kt"); - } - @TestMetadata("unsignedLongRemainder_jvm18.kt") public void testUnsignedLongRemainder_jvm18() throws Exception { runTest("compiler/testData/codegen/bytecodeText/unsignedTypes/unsignedLongRemainder_jvm18.kt"); diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/ir/semantics/IrJsCodegenBoxTestGenerated.java b/js/js.tests/test/org/jetbrains/kotlin/js/test/ir/semantics/IrJsCodegenBoxTestGenerated.java index 1a7b6f759ce..c8820eac62f 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/ir/semantics/IrJsCodegenBoxTestGenerated.java +++ b/js/js.tests/test/org/jetbrains/kotlin/js/test/ir/semantics/IrJsCodegenBoxTestGenerated.java @@ -19253,34 +19253,19 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest { runTest("compiler/testData/codegen/box/unsignedTypes/signedToUnsignedLiteralConversion.kt"); } - @TestMetadata("unsignedIntCompare_jvm16.kt") - public void testUnsignedIntCompare_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare_jvm16.kt"); + @TestMetadata("unsignedIntCompare.kt") + public void testUnsignedIntCompare() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare.kt"); } - @TestMetadata("unsignedIntCompare_jvm18.kt") - public void testUnsignedIntCompare_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare_jvm18.kt"); + @TestMetadata("unsignedIntDivide.kt") + public void testUnsignedIntDivide() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide.kt"); } - @TestMetadata("unsignedIntDivide_jvm16.kt") - public void testUnsignedIntDivide_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide_jvm16.kt"); - } - - @TestMetadata("unsignedIntDivide_jvm18.kt") - public void testUnsignedIntDivide_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide_jvm18.kt"); - } - - @TestMetadata("unsignedIntRemainder_jvm16.kt") - public void testUnsignedIntRemainder_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder_jvm16.kt"); - } - - @TestMetadata("unsignedIntRemainder_jvm18.kt") - public void testUnsignedIntRemainder_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder_jvm18.kt"); + @TestMetadata("unsignedIntRemainder.kt") + public void testUnsignedIntRemainder() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder.kt"); } @TestMetadata("unsignedLiteralsForMaxLongValue.kt") @@ -19293,34 +19278,19 @@ public class IrJsCodegenBoxTestGenerated extends AbstractIrJsCodegenBoxTest { runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLiteralsWithSignedOverflow.kt"); } - @TestMetadata("unsignedLongCompare_jvm16.kt") - public void testUnsignedLongCompare_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare_jvm16.kt"); + @TestMetadata("unsignedLongCompare.kt") + public void testUnsignedLongCompare() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare.kt"); } - @TestMetadata("unsignedLongCompare_jvm18.kt") - public void testUnsignedLongCompare_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare_jvm18.kt"); + @TestMetadata("unsignedLongDivide.kt") + public void testUnsignedLongDivide() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide.kt"); } - @TestMetadata("unsignedLongDivide_jvm16.kt") - public void testUnsignedLongDivide_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide_jvm16.kt"); - } - - @TestMetadata("unsignedLongDivide_jvm18.kt") - public void testUnsignedLongDivide_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide_jvm18.kt"); - } - - @TestMetadata("unsignedLongRemainder_jvm16.kt") - public void testUnsignedLongRemainder_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder_jvm16.kt"); - } - - @TestMetadata("unsignedLongRemainder_jvm18.kt") - public void testUnsignedLongRemainder_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder_jvm18.kt"); + @TestMetadata("unsignedLongRemainder.kt") + public void testUnsignedLongRemainder() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder.kt"); } @TestMetadata("unsignedRangeIterator.kt") diff --git a/js/js.tests/test/org/jetbrains/kotlin/js/test/semantics/JsCodegenBoxTestGenerated.java b/js/js.tests/test/org/jetbrains/kotlin/js/test/semantics/JsCodegenBoxTestGenerated.java index e1689058cab..74e1b3940a0 100644 --- a/js/js.tests/test/org/jetbrains/kotlin/js/test/semantics/JsCodegenBoxTestGenerated.java +++ b/js/js.tests/test/org/jetbrains/kotlin/js/test/semantics/JsCodegenBoxTestGenerated.java @@ -20398,34 +20398,19 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest { runTest("compiler/testData/codegen/box/unsignedTypes/signedToUnsignedLiteralConversion.kt"); } - @TestMetadata("unsignedIntCompare_jvm16.kt") - public void testUnsignedIntCompare_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare_jvm16.kt"); + @TestMetadata("unsignedIntCompare.kt") + public void testUnsignedIntCompare() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare.kt"); } - @TestMetadata("unsignedIntCompare_jvm18.kt") - public void testUnsignedIntCompare_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntCompare_jvm18.kt"); + @TestMetadata("unsignedIntDivide.kt") + public void testUnsignedIntDivide() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide.kt"); } - @TestMetadata("unsignedIntDivide_jvm16.kt") - public void testUnsignedIntDivide_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide_jvm16.kt"); - } - - @TestMetadata("unsignedIntDivide_jvm18.kt") - public void testUnsignedIntDivide_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntDivide_jvm18.kt"); - } - - @TestMetadata("unsignedIntRemainder_jvm16.kt") - public void testUnsignedIntRemainder_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder_jvm16.kt"); - } - - @TestMetadata("unsignedIntRemainder_jvm18.kt") - public void testUnsignedIntRemainder_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder_jvm18.kt"); + @TestMetadata("unsignedIntRemainder.kt") + public void testUnsignedIntRemainder() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedIntRemainder.kt"); } @TestMetadata("unsignedLiteralsForMaxLongValue.kt") @@ -20438,34 +20423,19 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest { runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLiteralsWithSignedOverflow.kt"); } - @TestMetadata("unsignedLongCompare_jvm16.kt") - public void testUnsignedLongCompare_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare_jvm16.kt"); + @TestMetadata("unsignedLongCompare.kt") + public void testUnsignedLongCompare() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare.kt"); } - @TestMetadata("unsignedLongCompare_jvm18.kt") - public void testUnsignedLongCompare_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongCompare_jvm18.kt"); + @TestMetadata("unsignedLongDivide.kt") + public void testUnsignedLongDivide() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide.kt"); } - @TestMetadata("unsignedLongDivide_jvm16.kt") - public void testUnsignedLongDivide_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide_jvm16.kt"); - } - - @TestMetadata("unsignedLongDivide_jvm18.kt") - public void testUnsignedLongDivide_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongDivide_jvm18.kt"); - } - - @TestMetadata("unsignedLongRemainder_jvm16.kt") - public void testUnsignedLongRemainder_jvm16() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder_jvm16.kt"); - } - - @TestMetadata("unsignedLongRemainder_jvm18.kt") - public void testUnsignedLongRemainder_jvm18() throws Exception { - runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder_jvm18.kt"); + @TestMetadata("unsignedLongRemainder.kt") + public void testUnsignedLongRemainder() throws Exception { + runTest("compiler/testData/codegen/box/unsignedTypes/unsignedLongRemainder.kt"); } @TestMetadata("unsignedRangeIterator.kt")