Skip to content

Commit

Permalink
Remove unecessary feature from backtrace test
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Spinale <[email protected]>
  • Loading branch information
nspin committed Oct 31, 2024
1 parent fb12f7b commit df4495f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion crates/private/tests/root-task/backtrace/Cargo.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ mk {
sel4
sel4-backtrace-embedded-debug-info
;
sel4-root-task = localCrates.sel4-root-task // { features = [ "unwinding" "alloc" "single-threaded" ]; };
sel4-root-task = localCrates.sel4-root-task // { features = [ "unwinding" "alloc" ]; };
sel4-backtrace-simple = localCrates.sel4-backtrace-simple // { features = [ "alloc" ]; };
sel4-backtrace = localCrates.sel4-backtrace // { features = [ "full" ]; };
sel4-backtrace-types = localCrates.sel4-backtrace-types // { features = [ "full" ]; };
Expand Down
5 changes: 1 addition & 4 deletions crates/private/tests/root-task/backtrace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,4 @@ sel4-backtrace = { path = "../../../../sel4-backtrace", features = ["full"] }
sel4-backtrace-embedded-debug-info = { path = "../../../../sel4-backtrace/embedded-debug-info" }
sel4-backtrace-simple = { path = "../../../../sel4-backtrace/simple", features = ["alloc"] }
sel4-backtrace-types = { path = "../../../../sel4-backtrace/types", features = ["full"] }

[dependencies.sel4-root-task]
path = "../../../../sel4-root-task"
features = ["unwinding", "alloc", "single-threaded"]
sel4-root-task = { path = "../../../../sel4-root-task", features = ["unwinding", "alloc"] }

0 comments on commit df4495f

Please sign in to comment.