mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 05:49:08 +00:00
Add comment for why we're ignoring deep specialization tests
This commit is contained in:
parent
356ba91f19
commit
1c6d423e52
1 changed files with 6 additions and 6 deletions
|
@ -955,7 +955,7 @@ fn encode_then_decode_list_of_lists_of_strings() {
|
||||||
#[test]
|
#[test]
|
||||||
#[cfg(all(
|
#[cfg(all(
|
||||||
any(feature = "gen-llvm", feature = "gen-wasm"),
|
any(feature = "gen-llvm", feature = "gen-wasm"),
|
||||||
not(debug_assertions) // hits a stack overflow in debug builds
|
not(debug_assertions) // https://github.com/roc-lang/roc/issues/3898
|
||||||
))]
|
))]
|
||||||
fn decode_record_two_fields() {
|
fn decode_record_two_fields() {
|
||||||
assert_evals_to!(
|
assert_evals_to!(
|
||||||
|
@ -977,7 +977,7 @@ fn decode_record_two_fields() {
|
||||||
#[test]
|
#[test]
|
||||||
#[cfg(all(
|
#[cfg(all(
|
||||||
any(feature = "gen-llvm", feature = "gen-wasm"),
|
any(feature = "gen-llvm", feature = "gen-wasm"),
|
||||||
not(debug_assertions) // hits a stack overflow in debug builds
|
not(debug_assertions) // https://github.com/roc-lang/roc/issues/3898
|
||||||
))]
|
))]
|
||||||
fn decode_record_two_fields_string_and_int() {
|
fn decode_record_two_fields_string_and_int() {
|
||||||
assert_evals_to!(
|
assert_evals_to!(
|
||||||
|
@ -999,7 +999,7 @@ fn decode_record_two_fields_string_and_int() {
|
||||||
#[test]
|
#[test]
|
||||||
#[cfg(all(
|
#[cfg(all(
|
||||||
any(feature = "gen-llvm", feature = "gen-wasm"),
|
any(feature = "gen-llvm", feature = "gen-wasm"),
|
||||||
not(debug_assertions) // hits a stack overflow in debug builds
|
not(debug_assertions) // https://github.com/roc-lang/roc/issues/3898
|
||||||
))]
|
))]
|
||||||
fn decode_record_two_fields_string_and_string_infer() {
|
fn decode_record_two_fields_string_and_string_infer() {
|
||||||
assert_evals_to!(
|
assert_evals_to!(
|
||||||
|
@ -1021,7 +1021,7 @@ fn decode_record_two_fields_string_and_string_infer() {
|
||||||
#[test]
|
#[test]
|
||||||
#[cfg(all(
|
#[cfg(all(
|
||||||
any(feature = "gen-llvm", feature = "gen-wasm"),
|
any(feature = "gen-llvm", feature = "gen-wasm"),
|
||||||
not(debug_assertions) // hits a stack overflow in debug builds
|
not(debug_assertions) // https://github.com/roc-lang/roc/issues/3898
|
||||||
))]
|
))]
|
||||||
fn decode_record_two_fields_string_and_string_infer_local_var() {
|
fn decode_record_two_fields_string_and_string_infer_local_var() {
|
||||||
assert_evals_to!(
|
assert_evals_to!(
|
||||||
|
@ -1044,7 +1044,7 @@ fn decode_record_two_fields_string_and_string_infer_local_var() {
|
||||||
#[test]
|
#[test]
|
||||||
#[cfg(all(
|
#[cfg(all(
|
||||||
any(feature = "gen-llvm", feature = "gen-wasm"),
|
any(feature = "gen-llvm", feature = "gen-wasm"),
|
||||||
not(debug_assertions) // hits a stack overflow in debug builds
|
not(debug_assertions) // https://github.com/roc-lang/roc/issues/3898
|
||||||
))]
|
))]
|
||||||
fn decode_record_two_fields_string_and_string_infer_local_var_destructured() {
|
fn decode_record_two_fields_string_and_string_infer_local_var_destructured() {
|
||||||
assert_evals_to!(
|
assert_evals_to!(
|
||||||
|
@ -1088,7 +1088,7 @@ fn decode_empty_record() {
|
||||||
#[cfg(all(
|
#[cfg(all(
|
||||||
any(feature = "gen-llvm", feature = "gen-wasm"),
|
any(feature = "gen-llvm", feature = "gen-wasm"),
|
||||||
not(feature = "gen-llvm-wasm"), // hits a wasm3 stack overflow
|
not(feature = "gen-llvm-wasm"), // hits a wasm3 stack overflow
|
||||||
not(debug_assertions) // hits a stack overflow in debug builds
|
not(debug_assertions) // https://github.com/roc-lang/roc/issues/3898
|
||||||
))]
|
))]
|
||||||
fn decode_record_of_record() {
|
fn decode_record_of_record() {
|
||||||
assert_evals_to!(
|
assert_evals_to!(
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue