mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
disable a segfaulting test on windows
This commit is contained in:
parent
57201db2f6
commit
5d60ffeebf
1 changed files with 7 additions and 1 deletions
|
@ -946,7 +946,13 @@ fn when_peano() {
|
|||
}
|
||||
|
||||
#[test]
|
||||
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
|
||||
// This doesn't work on Windows. If you make it return a Result.withDefault 0 (so it's returning
|
||||
// an integer instead of a Result), then it works on Windows, suggesting this is a C ABI issue.
|
||||
// We should try this out on Windows again after making adjustments to the Result C ABI!
|
||||
#[cfg(all(
|
||||
not(target_family = "windows"),
|
||||
any(feature = "gen-llvm", feature = "gen-wasm")
|
||||
))]
|
||||
#[should_panic(expected = "Roc failed with message: ")]
|
||||
fn overflow_frees_list() {
|
||||
assert_evals_to!(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue