2
0
Fork 0
genodepkgs/tests/fs_report.nix

24 lines
567 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 ];
testConfig = ./fs_report.xml;
bootModules = {
fs_report = "${genode.os}/bin/fs_report";
fs_rom = "${genode.os}/bin/fs_rom";
ram_fs = "${genode.os}/bin/ram_fs";
test-fs_report = "${genode.os}/bin/test-fs_report";
"vfs.lib.so" = "${genode.os}/lib/vfs.lib.so";
};
2019-10-08 09:13:07 +02:00
testScript = ''
run_genode_until {child "test-fs_report" exited with exit value 0} 15
'';
}