about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2018-10-03 03:13:28 +0200
committeraszlig <aszlig@nix.build>2018-10-03 03:15:58 +0200
commit55d5e993ab67d9dbfa65db271f828c5e7faa8148 (patch)
treed322e32360cdd567086e727b76bbd5da35a3f582 /tests
parent8a0ba53704160a3d25a1264532ea8edaa697971a (diff)
tests/bfq: Don't test on bleeding edge kernel
If someone is going to use our patch for the latest release canidate
kernel and it doesn't work I'd say it's somewhat expected.

Right now the test fails with the current 4.19-rc6 and I don't have time
to investigate this. It might be the case that this also might be an
upstream issue, but let's actually lazy evaluate this and re-check once
4.19 is released.

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'tests')
-rw-r--r--tests/system/kernel/bfq.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/system/kernel/bfq.nix b/tests/system/kernel/bfq.nix
index 7b6314b1..8a76d2a0 100644
--- a/tests/system/kernel/bfq.nix
+++ b/tests/system/kernel/bfq.nix
@@ -2,8 +2,8 @@
   name = "bfq-kernel";
 
   machine = { pkgs, ... }: {
+    boot.kernelPackages = pkgs.linuxPackages_latest;
     vuizvui.system.kernel.bfq.enable = true;
-    vuizvui.system.kernel.useBleedingEdge = true;
     virtualisation.qemu.diskInterface = "scsi";
   };