mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 11:52:19 +00:00
disable some previous and still failing tests
This commit is contained in:
parent
5dc20e0f4e
commit
f6c231e259
1 changed files with 8 additions and 1 deletions
|
@ -3912,7 +3912,6 @@ fn list_range_length_overflow() {
|
|||
);
|
||||
}
|
||||
|
||||
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm", feature = "gen-dev"))]
|
||||
mod pattern_match {
|
||||
#[allow(unused_imports)]
|
||||
use crate::helpers::with_larger_debug_stack;
|
||||
|
@ -3929,6 +3928,7 @@ mod pattern_match {
|
|||
use super::{RocList, RocStr};
|
||||
|
||||
#[test]
|
||||
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm", feature = "gen-dev"))]
|
||||
fn unary_exact_size_match() {
|
||||
assert_evals_to!(
|
||||
r"
|
||||
|
@ -3944,6 +3944,7 @@ mod pattern_match {
|
|||
}
|
||||
|
||||
#[test]
|
||||
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm", feature = "gen-dev"))]
|
||||
fn many_exact_size_match() {
|
||||
assert_evals_to!(
|
||||
r"
|
||||
|
@ -3962,6 +3963,7 @@ mod pattern_match {
|
|||
}
|
||||
|
||||
#[test]
|
||||
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
|
||||
fn ranged_matches_head() {
|
||||
with_larger_debug_stack(|| {
|
||||
assert_evals_to!(
|
||||
|
@ -3994,6 +3996,7 @@ mod pattern_match {
|
|||
}
|
||||
|
||||
#[test]
|
||||
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
|
||||
fn ranged_matches_tail() {
|
||||
with_larger_debug_stack(|| {
|
||||
assert_evals_to!(
|
||||
|
@ -4026,6 +4029,7 @@ mod pattern_match {
|
|||
}
|
||||
|
||||
#[test]
|
||||
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm", feature = "gen-dev"))]
|
||||
fn bind_variables() {
|
||||
assert_evals_to!(
|
||||
r"
|
||||
|
@ -4054,6 +4058,7 @@ mod pattern_match {
|
|||
}
|
||||
|
||||
#[test]
|
||||
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
|
||||
fn order_list_size_tests_issue_4732() {
|
||||
assert_evals_to!(
|
||||
r"
|
||||
|
@ -4101,6 +4106,7 @@ mod pattern_match {
|
|||
}
|
||||
|
||||
#[test]
|
||||
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm", feature = "gen-dev"))]
|
||||
fn rest_as() {
|
||||
assert_evals_to!(
|
||||
r"
|
||||
|
@ -4124,6 +4130,7 @@ mod pattern_match {
|
|||
}
|
||||
|
||||
#[test]
|
||||
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm", feature = "gen-dev"))]
|
||||
fn list_str() {
|
||||
assert_evals_to!(
|
||||
r#"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue