From c5c66f0fc9825ed24266cce4b8824a1f8caaf120 Mon Sep 17 00:00:00 2001 From: Svyatoslav Scherbina Date: Tue, 21 Aug 2018 12:20:36 +0300 Subject: [PATCH] Enable unsignedTypes tests --- .../src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy | 6 ------ 1 file changed, 6 deletions(-) diff --git a/buildSrc/plugins/src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy b/buildSrc/plugins/src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy index 028773c1b71..e68089388d7 100644 --- a/buildSrc/plugins/src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy +++ b/buildSrc/plugins/src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy @@ -870,12 +870,6 @@ fun runTest() { boolean isEnabledForNativeBackend(String fileName) { def text = project.file(fileName).text - def unsigned = findLinesWithPrefixesRemoved(text, '// WITH_UNSIGNED') - if (unsigned.size() != 0) { - // Unsigned types are not yet supported - return false - } - def inproperIeee754Comparisons = findLinesWithPrefixesRemoved(text, '// !LANGUAGE: ') if (inproperIeee754Comparisons.contains('-ProperIeee754Comparisons')) { // K/N supports only proper IEEE754 comparisons