From 3f6f25e06f144398826ca2d6b155f39ba7215e71 Mon Sep 17 00:00:00 2001 From: meisl Date: Sat, 17 Jul 2021 17:12:16 +0200 Subject: [PATCH] * @Disable tests re unsolved #55, "float[] initializer with range and no explicit array size" --- compiler/test/TestCompilerOnRanges.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/compiler/test/TestCompilerOnRanges.kt b/compiler/test/TestCompilerOnRanges.kt index 76e8d1b32..ee11c39ff 100644 --- a/compiler/test/TestCompilerOnRanges.kt +++ b/compiler/test/TestCompilerOnRanges.kt @@ -61,7 +61,7 @@ class TestCompilerOnRanges { } @Test -// @Disabled("bug in ConstantIdentifierReplacer.before(VarDecl)@decl.datatype==ARRAY_F") + @Disabled("#55: bug in ConstantIdentifierReplacer.before(VarDecl)@decl.datatype==ARRAY_F") fun testFloatArrayInitializerWithRange_char_to_char() { val platform = C64Target val result = compileText(platform, optimize = false, """ @@ -109,6 +109,7 @@ class TestCompilerOnRanges { @TestFactory + @Disabled("#55") fun floatArrayInitializerWithRange() = mapCombinations( dim1 = listOf("", "42", "41"), // sizeInDecl dim2 = listOf("%option enable_floats", ""), // optEnableFloats