liminix/tests/wlan/test.nix

21 lines
476 B
Nix
Raw Normal View History

2023-02-08 23:19:18 +00:00
{
liminix
, nixpkgs
}:
let img = (import liminix {
2023-12-04 23:36:40 +00:00
device = import "${liminix}/devices/qemu-armv7l/";
2023-02-08 23:19:18 +00:00
liminix-config = ./configuration.nix;
}).outputs.default;
pkgs = import <nixpkgs> { overlays = [(import ../../overlay.nix)]; };
in pkgs.runCommand "check" {
nativeBuildInputs = with pkgs; [
expect socat
2023-02-08 23:19:18 +00:00
] ;
} ''
2023-05-07 22:01:24 +00:00
. ${../test-helpers.sh}
2023-02-08 23:19:18 +00:00
mkdir vm
${img}/run.sh --background ./vm
expect ${./wait-for-wlan.expect} |tee output && mv output $out
2023-02-08 23:19:18 +00:00
''