summary refs log tree commit diff
path: root/nixos/tests/systemd-binfmt.nix
blob: 2a676f3da98b657acea41afa1053edd732ec4a29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Teach the kernel how to run armv7l and aarch64-linux binaries,
# and run GNU Hello for these architectures.
import ./make-test-python.nix ({ pkgs, ... }: {
  name = "systemd-binfmt";
  machine = {
    boot.binfmt.emulatedSystems = [
      "armv7l-linux"
      "aarch64-linux"
    ];
  };

  testScript = let
    helloArmv7l = pkgs.pkgsCross.armv7l-hf-multiplatform.hello;
    helloAarch64 = pkgs.pkgsCross.aarch64-multiplatform.hello;
  in ''
    machine.start()
    assert "world" in machine.succeed(
        "${helloArmv7l}/bin/hello"
    )
    assert "world" in machine.succeed(
        "${helloAarch64}/bin/hello"
    )
  '';
})