Genode Packages collection
https://git.sr.ht/~ehmry/genodepkgs/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
534 B
22 lines
534 B
# SPDX-License-Identifier: CC0-1.0 |
|
|
|
{ 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 = "${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 |
|
''; |
|
}
|
|
|