2
0
Fork 0
genodepkgs/tests/pci.nix

21 lines
466 B
Nix
Raw Normal View History

2019-10-13 13:25:39 +02:00
{ pkgs, lib }:
with pkgs;
{
name = "pci";
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ehmry ];
testConfig = lib.renderDhallInit ./pci.dhall "{=}";
bootModules = {
acpi_drv = "${genode.os}/bin/acpi_drv";
platform_drv = "${genode.os}/bin/platform_drv";
report_rom = "${genode.os}/bin/report_rom";
test-pci = "${genode.os}/bin/test-pci";
};
testScript = ''
run_genode_until "--- Platform test finished ---.*\n" 60
'';
}