From cac2704d61e8e5b5065c6240c2678ad9476cf72b Mon Sep 17 00:00:00 2001 From: Carl Gay Date: Sat, 2 Nov 2024 21:27:30 -0400 Subject: [PATCH] Disable issue-1523 because it causes CI to crash This can be re-enabled after CI is using a post-2024.1 release. --- sources/dylan/tests/regressions.dylan | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/sources/dylan/tests/regressions.dylan b/sources/dylan/tests/regressions.dylan index d985d9b54..eb208f4d6 100644 --- a/sources/dylan/tests/regressions.dylan +++ b/sources/dylan/tests/regressions.dylan @@ -276,8 +276,14 @@ define test issue-1455 () check-true("no other values were returned", empty?(more)); end; -define test issue-1523 () +define test issue-1523 (expected-to-fail-reason: "needs a release after 2024.1") // Loop merge for a can be eliminated as dead code + + assert-true(#f); + + /* This causes an illegal instruction trap. Uncomment this after the release following + 2024.1 is live. + let value = iterate loop (a = #f, b = 1) if (b == 3) @@ -288,6 +294,7 @@ define test issue-1523 () end; check-equal("Loop with dead iteration variables executes properly", value, 3); + */ end; define suite dylan-regressions-test-suite ()