Skip to content

Commit

Permalink
Disable issue-1523 because it causes CI to crash
Browse files Browse the repository at this point in the history
This can be re-enabled after CI is using a post-2024.1 release.
  • Loading branch information
cgay committed Nov 3, 2024
1 parent 544b540 commit cac2704
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion sources/dylan/tests/regressions.dylan
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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 ()
Expand Down

0 comments on commit cac2704

Please sign in to comment.