sigil/tests/vmm_x86.nix
Emery Hemingway 40c1977779 Replace test framework
Adopt the Python test driver from NixOS. Temporarily drop Sotest
runs.
2020-06-01 17:15:03 +05:30

15 lines
299 B
Nix

# SPDX-License-Identifier: CC0-1.0
{ pkgs, ... }:
{
name = "vmm";
constraints = specs:
with builtins;
all (f: any f specs) [ (spec: spec == "nova") (spec: spec == "x86") ];
machine = {
config = ./vmm_x86.dhall;
inputs = map pkgs.genodeSources.make [ "test/vmm_x86" ];
};
}