Skip to content

Commit 8582650

Browse files
committed
scx.full: enable doCheck
1 parent 5f99b1f commit 8582650

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

pkgs/os-specific/linux/scx/scx_cscheds.nix

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,8 +126,7 @@ llvmPackages.stdenv.mkDerivation (finalAttrs: {
126126
"out"
127127
];
128128

129-
# Enable this when default kernel in nixpkgs is 6.12+
130-
doCheck = false;
129+
doCheck = true;
131130

132131
meta = scx-common.meta // {
133132
description = "Sched-ext C userspace schedulers";

pkgs/os-specific/linux/scx/scx_rustscheds.nix

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,14 @@ rustPlatform.buildRustPackage {
5858
"zerocallusedregs"
5959
];
6060

61-
# Enable this when default kernel in nixpkgs is 6.12+
62-
doCheck = false;
61+
doCheck = true;
62+
checkFlags = [
63+
"--skip=compat::tests::test_ksym_exists"
64+
"--skip=compat::tests::test_read_enum"
65+
"--skip=compat::tests::test_struct_has_field"
66+
"--skip=cpumask"
67+
"--skip=topology"
68+
];
6369

6470
meta = scx-common.meta // {
6571
description = "Sched-ext Rust userspace schedulers";

0 commit comments

Comments
 (0)