Add a hwloc test

This commit is contained in:
2020-12-04 11:18:44 +01:00
parent d70316a25a
commit 90d7c83261
3 changed files with 64 additions and 0 deletions

View File

@@ -120,6 +120,10 @@ let
nanos6 = bsc.nanos6Release;
nanos6Release = callPackage ./bsc/nanos6/default.nix { };
nanos6Git = callPackage ./bsc/nanos6/git.nix { };
nanos6Debug = bsc.nanos6.overrideAttrs (old: {
dontStrip = true;
enableDebugging = true;
});
jemalloc = self.jemalloc.overrideAttrs (old:
{
@@ -546,6 +550,10 @@ let
};
};
};
test = {
hwloc = callPackage ./test/bugs/hwloc.nix { };
};
};
});