From a5fe494ae36b4f9367e11727c62cc0c90bff285f Mon Sep 17 00:00:00 2001 From: Nikolay Igotti Date: Thu, 1 Jun 2017 11:46:14 +0300 Subject: [PATCH] Fix Windows tests (#622) --- backend.native/tests/build.gradle | 5 ----- gradle.properties | 1 + 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/backend.native/tests/build.gradle b/backend.native/tests/build.gradle index 2edb3bf5c1e..eb95e0d72bb 100644 --- a/backend.native/tests/build.gradle +++ b/backend.native/tests/build.gradle @@ -372,11 +372,6 @@ task hello4(type: RunKonanTest) { } task tostring0(type: RunKonanTest) { - if (isWindows()) { - // ト is misprinted for now (as 0x3f). - // TODO: investigate. - disabled = true - } goldValue = "127\n-1\n239\nA\nЁ\nト\n1122334455\n112233445566778899\n3.14159265358\n1.0E27\n1.0E-300\ntrue\nfalse\n" source = "runtime/basic/tostring0.kt" } diff --git a/gradle.properties b/gradle.properties index 3e2094ab81b..2ef7f99d29b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -26,3 +26,4 @@ kotlinCompilerRepo=http://dl.bintray.com/jetbrains/kotlin-native-dependencies #kotlinCompilerRepo=http://dl.bintray.com/kotlin/kotlin-dev kotlinCompilerModule=org.jetbrains.kotlin:kotlin-compiler:1.1-20170521.012435-545 konanVersion=0.2 +org.gradle.jvmargs='-Dfile.encoding=UTF-8' \ No newline at end of file