Skip to content

Commit

Permalink
rp2040: Temporarily disable remaining failing rp2040 tests
Browse files Browse the repository at this point in the history
Change-Id: I265a4558cd330e4aa30271682758a501f0564eee
Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/215490
Presubmit-Verified: CQ Bot Account <[email protected]>
Commit-Queue: Auto-Submit <[email protected]>
Reviewed-by: Taylor Cramer <[email protected]>
Pigweed-Auto-Submit: Dave Roth <[email protected]>
Lint: Lint 🤖 <[email protected]>
  • Loading branch information
davexroth authored and CQ Bot Account committed Jun 11, 2024
1 parent e59a11c commit 6f7fefe
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pw_i2c/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,12 @@ pw_cc_test(
srcs = [
"register_device_test.cc",
],
# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
target_compatible_with = select({
"//pw_build/constraints/chipset:rp2040": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
deps = [
":register_device",
"//pw_unit_test",
Expand Down
6 changes: 6 additions & 0 deletions pw_log_rpc/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,12 @@ pw_cc_test(
pw_cc_test(
name = "rpc_log_drain_test",
srcs = ["rpc_log_drain_test.cc"],
# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
target_compatible_with = select({
"//pw_build/constraints/chipset:rp2040": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
deps = [
":log_service",
":rpc_log_drain",
Expand Down
6 changes: 6 additions & 0 deletions pw_metric/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,12 @@ pw_cc_test(
srcs = [
"global_test.cc",
],
# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; has test
# failures.
target_compatible_with = select({
"//pw_build/constraints/chipset:rp2040": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
deps = [
":global",
],
Expand Down
6 changes: 6 additions & 0 deletions pw_sync/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,12 @@ pw_cc_test(
"interrupt_spin_lock_facade_test.cc",
"interrupt_spin_lock_facade_test_c.c",
],
# TODO: https://pwbug.dev/325509758 - Doesn't work on the Pico yet; hangs
# indefinitely.
target_compatible_with = select({
"//pw_build/constraints/chipset:rp2040": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
deps = [
":borrow_lockable_tests",
":interrupt_spin_lock",
Expand Down
5 changes: 5 additions & 0 deletions pw_tokenizer/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,11 @@ pw_cc_test(
"pw_tokenizer_private/tokenized_string_decoding_test_data.h",
"pw_tokenizer_private/varint_decoding_test_data.h",
],
# TODO: https://pwbug.dev/346628514 - Fix this for rp2040
target_compatible_with = select({
"//pw_build/constraints/chipset:rp2040": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
deps = [
":decoder",
"//pw_unit_test",
Expand Down
5 changes: 5 additions & 0 deletions pw_unit_test/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,11 @@ pw_cc_test(
pw_cc_test(
name = "framework_test",
srcs = ["framework_test.cc"],
# TODO: https://pwbug.dev/325509758 - Passes but hangs on cleanup.
target_compatible_with = select({
"//pw_build/constraints/chipset:rp2040": ["@platforms//:incompatible"],
"//conditions:default": [],
}),
deps = [
":pw_unit_test",
"//pw_assert",
Expand Down

0 comments on commit 6f7fefe

Please sign in to comment.