From 26b258af6aa63c6bd331e333a15dfd7cc0925c7f Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Sat, 21 Jul 2018 02:22:43 +0300 Subject: [PATCH] Unignore passing tests with unsigned literals in JS --- .../codegen/box/unsignedTypes/boxConstValOfUnsignedType.kt | 2 +- .../box/unsignedTypes/iterateOverListOfBoxedUnsignedValues.kt | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/compiler/testData/codegen/box/unsignedTypes/boxConstValOfUnsignedType.kt b/compiler/testData/codegen/box/unsignedTypes/boxConstValOfUnsignedType.kt index ca613fe7322..d7e628521b5 100644 --- a/compiler/testData/codegen/box/unsignedTypes/boxConstValOfUnsignedType.kt +++ b/compiler/testData/codegen/box/unsignedTypes/boxConstValOfUnsignedType.kt @@ -1,5 +1,5 @@ // WITH_UNSIGNED -// IGNORE_BACKEND: JVM_IR, JS_IR, JS +// IGNORE_BACKEND: JVM_IR, JS_IR const val maxUByte: UByte = 0xFFu diff --git a/compiler/testData/codegen/box/unsignedTypes/iterateOverListOfBoxedUnsignedValues.kt b/compiler/testData/codegen/box/unsignedTypes/iterateOverListOfBoxedUnsignedValues.kt index 789b28f6054..014bc3c460d 100644 --- a/compiler/testData/codegen/box/unsignedTypes/iterateOverListOfBoxedUnsignedValues.kt +++ b/compiler/testData/codegen/box/unsignedTypes/iterateOverListOfBoxedUnsignedValues.kt @@ -1,7 +1,6 @@ // WITH_UNSIGNED // IGNORE_BACKEND: JVM_IR // IGNORE_BACKEND: JS_IR -// IGNORE_BACKEND: JS fun box(): String { var sum = 0u