Skip to content

Commit

Permalink
rp2040: Renable tests that pass with larger stack frames
Browse files Browse the repository at this point in the history
Change-Id: I3bf99b7b864cdb281c87828882cd1900fca77970
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/211147
Reviewed-by: Armando Montanez <[email protected]>
Lint: Lint 🤖 <[email protected]>
Commit-Queue: Erik Gilling <[email protected]>
  • Loading branch information
konkers authored and CQ Bot Account committed May 24, 2024
1 parent 2ee9bbd commit 8c1118f
Show file tree
Hide file tree
Showing 16 changed files with 0 additions and 345 deletions.
58 changes: 0 additions & 58 deletions pw_allocator/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -425,12 +425,6 @@ pw_test("best_fit_block_allocator_test") {
":block_allocator_testing",
]
sources = [ "best_fit_block_allocator_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_test("block_test") {
Expand All @@ -439,12 +433,6 @@ pw_test("block_test") {
dir_pw_span,
]
sources = [ "block_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_test("bucket_block_allocator_test") {
Expand All @@ -453,12 +441,6 @@ pw_test("bucket_block_allocator_test") {
":bucket_block_allocator",
]
sources = [ "bucket_block_allocator_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_test("buddy_allocator_test") {
Expand Down Expand Up @@ -494,12 +476,6 @@ pw_test("dual_first_fit_block_allocator_test") {
":dual_first_fit_block_allocator",
]
sources = [ "dual_first_fit_block_allocator_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_test("fallback_allocator_test") {
Expand All @@ -518,12 +494,6 @@ pw_test("first_fit_block_allocator_test") {
":first_fit_block_allocator",
]
sources = [ "first_fit_block_allocator_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_test("freelist_test") {
Expand All @@ -533,23 +503,11 @@ pw_test("freelist_test") {
dir_pw_status,
]
sources = [ "freelist_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_test("freelist_heap_test") {
deps = [ ":freelist_heap" ]
sources = [ "freelist_heap_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; after test
# finishes device locks up.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_test("last_fit_block_allocator_test") {
Expand All @@ -558,12 +516,6 @@ pw_test("last_fit_block_allocator_test") {
":last_fit_block_allocator",
]
sources = [ "last_fit_block_allocator_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_test("libc_allocator_test") {
Expand Down Expand Up @@ -605,10 +557,6 @@ pw_test("tracking_allocator_test") {
":tracking_allocator",
]
sources = [ "tracking_allocator_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
enable_if = pw_build_EXECUTABLE_TARGET_TYPE != "pico_executable"
}

pw_test("typed_pool_test") {
Expand All @@ -630,12 +578,6 @@ pw_test("worst_fit_block_allocator_test") {
":worst_fit_block_allocator",
]
sources = [ "worst_fit_block_allocator_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_test_group("tests") {
Expand Down
30 changes: 0 additions & 30 deletions pw_blob_store/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -83,12 +83,6 @@ pw_test("blob_store_test_1_alignment") {
dir_pw_random,
]
sources = [ "blob_store_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_test("blob_store_test_16_alignment") {
Expand All @@ -103,12 +97,6 @@ pw_test("blob_store_test_16_alignment") {
]
sources = [ "blob_store_test.cc" ]
defines = [ "PW_FLASH_TEST_ALIGNMENT=16U" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_test("blob_store_chunk_write_test") {
Expand All @@ -121,12 +109,6 @@ pw_test("blob_store_chunk_write_test") {
dir_pw_random,
]
sources = [ "blob_store_chunk_write_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_test("blob_store_deferred_write_test") {
Expand All @@ -139,12 +121,6 @@ pw_test("blob_store_deferred_write_test") {
dir_pw_random,
]
sources = [ "blob_store_deferred_write_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_test("flat_file_system_entry_test") {
Expand All @@ -159,12 +135,6 @@ pw_test("flat_file_system_entry_test") {
dir_pw_random,
]
sources = [ "flat_file_system_entry_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_doc_group("docs") {
Expand Down
6 changes: 0 additions & 6 deletions pw_chrono/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -99,12 +99,6 @@ pw_test("system_timer_facade_test") {
"$dir_pw_sync:thread_notification",
pw_chrono_SYSTEM_TIMER_BACKEND,
]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_proto_library("protos") {
Expand Down
6 changes: 0 additions & 6 deletions pw_file/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,4 @@ pw_test("flat_file_system_test") {
dir_pw_status,
]
sources = [ "flat_file_system_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}
6 changes: 0 additions & 6 deletions pw_fuzzer/examples/fuzztest/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,6 @@ pw_source_set("metrics_lib") {
pw_test("metrics_unittest") {
sources = [ "metrics_unittest.cc" ]
deps = [ ":metrics_lib" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

# DOCSTAG: [pwfuzzer_examples_fuzztest-gn]
Expand Down
18 changes: 0 additions & 18 deletions pw_log_rpc/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -189,12 +189,6 @@ pw_test("log_service_test") {
"$dir_pw_rpc/raw:test_method_context",
"$dir_pw_status",
]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_test("log_filter_service_test") {
Expand All @@ -209,12 +203,6 @@ pw_test("log_filter_service_test") {
"$dir_pw_rpc/raw:test_method_context",
"$dir_pw_status",
]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_test("log_filter_test") {
Expand All @@ -228,12 +216,6 @@ pw_test("log_filter_test") {
"$dir_pw_result",
"$dir_pw_status",
]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_test("rpc_log_drain_test") {
Expand Down
12 changes: 0 additions & 12 deletions pw_metric/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -103,12 +103,6 @@ if (dir_pw_third_party_nanopb != "") {
"$dir_pw_rpc/nanopb:test_method_context",
]
sources = [ "metric_service_nanopb_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}
}

Expand Down Expand Up @@ -144,12 +138,6 @@ pw_test("metric_service_pwpb_test") {
"$dir_pw_rpc/raw:test_method_context",
]
sources = [ "metric_service_pwpb_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

################################################################################
Expand Down
18 changes: 0 additions & 18 deletions pw_multibuf/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,6 @@ pw_test("header_chunk_region_tracker_test") {
dir_pw_status,
]
sources = [ "header_chunk_region_tracker_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_source_set("single_chunk_region_tracker") {
Expand Down Expand Up @@ -92,12 +86,6 @@ pw_test("chunk_test") {
"$dir_pw_allocator:testing",
]
sources = [ "chunk_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_source_set("pw_multibuf") {
Expand All @@ -116,12 +104,6 @@ pw_test("multibuf_test") {
":test_utils",
]
sources = [ "multibuf_test.cc" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_source_set("allocator") {
Expand Down
23 changes: 0 additions & 23 deletions pw_protobuf/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -171,12 +171,6 @@ pw_test("codegen_decoder_test") {

# TODO: b/259746255 - Remove this when everything compiles with -Wconversion.
configs = [ "$dir_pw_build:conversion_warnings" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_test("codegen_encoder_test") {
Expand All @@ -185,12 +179,6 @@ pw_test("codegen_encoder_test") {

# TODO: b/259746255 - Remove this when everything compiles with -Wconversion.
configs = [ "$dir_pw_build:conversion_warnings" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_test("codegen_message_test") {
Expand All @@ -202,12 +190,6 @@ pw_test("codegen_message_test") {

# TODO: b/259746255 - Remove this when everything compiles with -Wconversion.
configs = [ "$dir_pw_build:conversion_warnings" ]

# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

pw_test("serialized_size_test") {
Expand Down Expand Up @@ -240,11 +222,6 @@ pw_test("message_test") {

# TODO: b/259746255 - Remove this when everything compiles with -Wconversion.
configs = [ "$dir_pw_build:conversion_warnings" ]

# TODO: https://pwbug.dev/325509758 - Passes but hangs on cleanup.
if (pw_build_EXECUTABLE_TARGET_TYPE == "pico_executable") {
enable_if = false
}
}

group("perf_tests") {
Expand Down
Loading

0 comments on commit 8c1118f

Please sign in to comment.