mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
48052ca0dd
The sysfs file /sys/kernel/mm/ksm/run seems to be available as soon as the kernel has started, so no point in waiting for udev to "settle". If for some reason it doesn't, we let the unit fail explicitly.
23 lines
496 B
Nix
23 lines
496 B
Nix
import ./make-test-python.nix ({ lib, ...} :
|
|
|
|
{
|
|
name = "ksm";
|
|
meta = with lib.maintainers; {
|
|
maintainers = [ rnhmjoj ];
|
|
};
|
|
|
|
machine = { ... }: {
|
|
imports = [ ../modules/profiles/minimal.nix ];
|
|
|
|
hardware.ksm.enable = true;
|
|
hardware.ksm.sleep = 300;
|
|
};
|
|
|
|
testScript =
|
|
''
|
|
machine.start()
|
|
machine.wait_until_succeeds("test $(</sys/kernel/mm/ksm/run) -eq 1")
|
|
machine.wait_until_succeeds("test $(</sys/kernel/mm/ksm/sleep_millisecs) -eq 300")
|
|
'';
|
|
})
|