2
0
Fork 0
genodepkgs/tests/fs_report.nix

16 lines
313 B
Nix
Raw Normal View History

2020-01-17 01:24:34 +01:00
# SPDX-License-Identifier: CC0-1.0
2019-11-05 17:38:47 +01:00
{ testEnv, pkgs, ... }:
with pkgs;
testEnv.mkTest {
name = "fs_report";
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ehmry ];
2020-01-17 19:27:04 +01:00
testConfig = ./fs_report.dhall;
2019-10-08 09:13:07 +02:00
testScript = ''
run_genode_until {child "test-fs_report" exited with exit value 0} 15
'';
}