You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
470 B
Nix
21 lines
470 B
Nix
{ testEnv, pkgs, ... }:
|
|
with pkgs;
|
|
|
|
testEnv.mkTest {
|
|
name = "pci";
|
|
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ehmry ];
|
|
|
|
testConfig = testEnv.lib.renderDhallInit ./pci.dhall "{=}";
|
|
|
|
bootModules = {
|
|
acpi_drv = "${os}/bin/acpi_drv";
|
|
platform_drv = "${os}/bin/platform_drv";
|
|
report_rom = "${os}/bin/report_rom";
|
|
test-pci = "${os}/bin/test-pci";
|
|
};
|
|
|
|
testScript = ''
|
|
run_genode_until "--- Platform test finished ---.*\n" 60
|
|
'';
|
|
}
|