2
0
Fork 0
genodepkgs/tests/pci.nix

16 lines
324 B
Nix

# SPDX-License-Identifier: CC0-1.0
{ testEnv, pkgs, ... }:
with pkgs;
testEnv.mkTest {
name = "pci";
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ehmry ];
testConfig = ./pci.dhall;
testInputs = [ pkgs.genodeTests ];
testScript = ''
run_genode_until "--- Platform test finished ---.*\n" 60
'';
}