about summary refs log tree commit diff
path: root/tests
diff options
context:
space:
mode:
authoraszlig <aszlig@nix.build>2023-09-14 18:48:40 +0200
committeraszlig <aszlig@nix.build>2023-09-14 18:57:51 +0200
commit75ea723caea05056810dad9160bc93e571c77985 (patch)
tree9f5fdcab445670c644947da5377ec9f01f601baa /tests
parentafb1c4264fef9362b124979ac3690b0b03eb3901 (diff)
machines: Remove tyree and brawndo
The former no longer exists and the latter has a new hardware and it's
self-managed by the owner now (which is always the best IMHO).

With both machines gone, we no longer need the "managed" profile and the
BFQ module that was used for the old hardware of Brawndo was no longer
used anywhere else. Same with the T100HA module, since Tyree was an ASUS
T100HA and apart from the module being probably very much outdated we
don't have another such hardware in Vuizvui.

Signed-off-by: aszlig <aszlig@nix.build>
Diffstat (limited to 'tests')
-rw-r--r--tests/default.nix3
-rw-r--r--tests/system/kernel/bfq.nix15
2 files changed, 0 insertions, 18 deletions
diff --git a/tests/default.nix b/tests/default.nix
index e7f54e76..af0e8b43 100644
--- a/tests/default.nix
+++ b/tests/default.nix
@@ -20,7 +20,4 @@ in {
     gnupg = callTest ./programs/gnupg;
   };
   sandbox = callTest ./sandbox.nix;
-  system = {
-    kernel.bfq = callTest ./system/kernel/bfq.nix;
-  };
 }
diff --git a/tests/system/kernel/bfq.nix b/tests/system/kernel/bfq.nix
deleted file mode 100644
index 8aab8925..00000000
--- a/tests/system/kernel/bfq.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{
-  name = "bfq-kernel";
-
-  machine = { pkgs, ... }: {
-    boot.kernelPackages = pkgs.linuxPackages_latest;
-    vuizvui.system.kernel.bfq.enable = true;
-    virtualisation.qemu.diskInterface = "scsi";
-  };
-
-  testScript = ''
-    # fmt: off
-    machine.execute('tail /sys/block/*/queue/scheduler >&2')
-    machine.succeed('grep -HF "[bfq]" /sys/block/sda/queue/scheduler')
-  '';
-}