2
0
genodepkgs/tests/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

16 lines
357 B
Nix

# SPDX-License-Identifier: CC0-1.0
{ pkgs, ... }: {
name = "x86";
constraints = builtins.any (spec: spec == "x86");
machine = {
config = ./x86.dhall;
inputs = (map pkgs.genodeSources.depot [
"acpi_drv"
"platform_drv"
"report_rom"
"test-signal"
]) ++ (map pkgs.genodeSources.make [ "test/pci" "test/rtc" ]);
};
}