ignore test debug exceptions in all contexts

This commit is contained in:
Anton-4 2024-11-09 13:51:46 +01:00
parent 119663b3e7
commit 4249cd4784
No known key found for this signature in database
GPG key ID: 0971D718C0A9B937
3 changed files with 17 additions and 4 deletions

View file

@ -624,12 +624,15 @@ fn list_of_3_field_records() {
);
}
// not(debug_assertions) because of issue #6946
#[cfg(not(debug_assertions))]
#[test]
fn identity_lambda() {
expect_success("\\x -> x", "<function> : a -> a");
}
#[cfg(not(feature = "wasm"))]
// not(debug_assertions) because of issue #6946
#[cfg(all(not(feature = "wasm"), not(debug_assertions)))]
#[test]
fn sum_lambda() {
expect_success("\\x, y -> x + y", "<function> : Num a, Num a -> Num a");
@ -1049,7 +1052,8 @@ fn large_nullable_wrapped_tag_union() {
)
}
#[cfg(not(feature = "wasm"))]
// not(debug_assertions) because of issue #6946
#[cfg(all(not(feature = "wasm"), not(debug_assertions)))]
#[test]
fn issue_2300() {
expect_success(
@ -1330,7 +1334,8 @@ fn box_box_type_alias() {
}
#[test]
#[cfg(not(feature = "wasm"))]
// not(debug_assertions) because of issue #6946
#[cfg(all(not(feature = "wasm"), not(debug_assertions)))]
fn issue_2582_specialize_result_value() {
expect_success(
r#"\x, list -> if x > 0 then List.first list else Ok """#,