2
0
Fork 0
genodepkgs/tests/pci.nix

21 lines
493 B
Nix
Raw Normal View History

{ testEnv, pkgs }:
2019-10-13 13:25:39 +02:00
with pkgs;
testEnv.mkTest {
2019-10-13 13:25:39 +02:00
name = "pci";
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ehmry ];
testConfig = testEnv.lib.renderDhallInit ./pci.dhall "{=}";
2019-10-13 13:25:39 +02:00
bootModules = {
2019-11-05 16:01:32 +01:00
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";
2019-10-13 13:25:39 +02:00
};
testScript = ''
run_genode_until "--- Platform test finished ---.*\n" 60
'';
}