Skip to content

Commit

Permalink
Adjusts metal backend test_stack_size().
Browse files Browse the repository at this point in the history
  • Loading branch information
Lichtso committed Oct 20, 2023
1 parent ab577c6 commit 0db0b37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/back/msl/writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4739,8 +4739,8 @@ fn test_stack_size() {
}
let stack_size = addresses_end - addresses_start;
// check the size (in debug only)
// last observed macOS value: 19152 (CI)
if !(9000..=20000).contains(&stack_size) {
// last observed macOS value: 22256 (CI)
if !(15000..=25000).contains(&stack_size) {
panic!("`put_block` stack size {stack_size} has changed!");
}
}
Expand Down

0 comments on commit 0db0b37

Please sign in to comment.