mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 11:45:45 +03:00
22 lines
397 B
Nix
22 lines
397 B
Nix
![]() |
# Miscellaneous small tests that don't warrant their own VM run.
|
||
|
|
||
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
|
||
|
machine = { config, pkgs, ... }: { };
|
||
|
|
||
|
testScript =
|
||
|
''
|
||
|
subtest "nixos-version", sub {
|
||
|
$machine->succeed("[ `nixos-version | wc -w` = 1 ]");
|
||
|
};
|
||
|
|
||
|
# Regression test for GMP aborts on QEMU.
|
||
|
subtest "gmp", sub {
|
||
|
$machine->succeed("expr 1 + 2");
|
||
|
};
|
||
|
'';
|
||
|
|
||
|
}
|