Skip to content

Commit

Permalink
nix: Polish Ring test
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Spinale <[email protected]>
  • Loading branch information
nspin committed Feb 14, 2024
1 parent e901cb2 commit 3450b7d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions hacking/nix/scope/world/instances/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,9 @@ in rec {
tests.root-task.panicking.byConfig.abort.withoutAlloc
tests.root-task.panicking.byConfig.unwind.withAlloc
tests.root-task.panicking.byConfig.unwind.withoutAlloc
tests.root-task.default-test-harness
tests.root-task.c
tests.root-task.default-test-harness
# tests.root-task.ring
tests.capdl.threads
tests.capdl.utcover
microkit.examples.hello
Expand Down Expand Up @@ -212,7 +213,7 @@ in rec {
};
});

ring = maybe (haveFullRuntime && haveUnwindingSupport) (
ring = maybe (haveFullRuntime && haveUnwindingSupport && !hostPlatform.isRiscV32) (
let
rootTask = lib.makeOverridable mkTask {
rootCrate = crates.ring;
Expand Down Expand Up @@ -256,7 +257,7 @@ in rec {
in {
inherit byElf;

all = mkRunTests "run-all-ring-test" (lib.flip lib.mapAttrsToList byElf (k: v: lib.nameValuePair k v.automate));
automate = mkRunTests "run-all-ring-test" (lib.flip lib.mapAttrsToList byElf (k: v: lib.nameValuePair k v.automate));
}
);

Expand Down

0 comments on commit 3450b7d

Please sign in to comment.