Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disable issue-1523 because it causes CI to crash #1628

Merged
merged 1 commit into from
Nov 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading