From a4315acd4e1836909e507478a4fdbea1abf94d4b Mon Sep 17 00:00:00 2001 From: maxonfjvipon Date: Thu, 14 Mar 2024 16:01:06 +0300 Subject: [PATCH] fix(#2943): pdd --- .../resources/org/eolang/maven/phi/bool-tests.yaml | 11 +---------- .../print/xmir/{boo-tests.xmir => bool-tests.xmir} | 0 eo-runtime/src/test/eo/org/eolang/bool-tests.eo | 1 + 3 files changed, 2 insertions(+), 10 deletions(-) rename eo-maven-plugin/src/test/resources/org/eolang/maven/print/xmir/{boo-tests.xmir => bool-tests.xmir} (100%) diff --git a/eo-maven-plugin/src/test/resources/org/eolang/maven/phi/bool-tests.yaml b/eo-maven-plugin/src/test/resources/org/eolang/maven/phi/bool-tests.yaml index eefc8a8af5..b9ee3dd08d 100644 --- a/eo-maven-plugin/src/test/resources/org/eolang/maven/phi/bool-tests.yaml +++ b/eo-maven-plugin/src/test/resources/org/eolang/maven/phi/bool-tests.yaml @@ -60,10 +60,7 @@ eo: | 01-.as-bytes.eq TRUE 00-.as-bytes.eq FALSE - # @todo #2437:30min Enable the test. After getting rid of delta attributes in data primitives - # this test started to execute infinitely long while other tests with "bool.while" are executed - # without any troubles. Need to find what's the problem and make the test enable again. Don't - # forget to remove the puzzle. + # Test. [] > complex-bool-expression-in-while memory 0 > m seq > res @@ -152,9 +149,6 @@ eo: | arr.length # Test. - # @todo #2785:60min Enable this test. For some reason this test fails. The only difference between - # this test and `iterating-tuple-with-while-using-internal-iterator` is that this test uses - # external iterator inside instead of standard `i` from `while` body. [] > iterating-tuple-with-while-using-external-iterator * 1 1 1 1 > arr memory 0 > iter @@ -211,9 +205,6 @@ eo: | arr.length # Test. - # @todo #2437:60min Enable the test. For some reason this test fails. The only difference between - # this test and `iterating-tuple-with-while-without-body-multiple` is that in this test tuple - # consists of only one element. [] > iterating-tuple-with-while-without-body-single * 1 > arr memory 0 > iter diff --git a/eo-maven-plugin/src/test/resources/org/eolang/maven/print/xmir/boo-tests.xmir b/eo-maven-plugin/src/test/resources/org/eolang/maven/print/xmir/bool-tests.xmir similarity index 100% rename from eo-maven-plugin/src/test/resources/org/eolang/maven/print/xmir/boo-tests.xmir rename to eo-maven-plugin/src/test/resources/org/eolang/maven/print/xmir/bool-tests.xmir diff --git a/eo-runtime/src/test/eo/org/eolang/bool-tests.eo b/eo-runtime/src/test/eo/org/eolang/bool-tests.eo index c1c6ac7181..51176e9b19 100644 --- a/eo-runtime/src/test/eo/org/eolang/bool-tests.eo +++ b/eo-runtime/src/test/eo/org/eolang/bool-tests.eo @@ -81,6 +81,7 @@ 01-.as-bytes.eq TRUE 00-.as-bytes.eq FALSE +# Test. # @todo #2437:30min Enable the test. After getting rid of delta attributes in data primitives # this test started to execute infinitely long while other tests with "bool.while" are executed # without any troubles. Need to find what's the problem and make the test enable again. Don't