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.
21 lines
496 B
21 lines
496 B
{ testEnv, pkgs, ... }: |
|
with pkgs; |
|
|
|
testEnv.mkTest { |
|
name = "fs_report"; |
|
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ehmry ]; |
|
|
|
testConfig = ./fs_report.xml; |
|
|
|
bootModules = { |
|
fs_report = "${os}/bin/fs_report"; |
|
fs_rom = "${os}/bin/fs_rom"; |
|
ram_fs = "${os}/bin/ram_fs"; |
|
test-fs_report = "${os}/bin/test-fs_report"; |
|
"vfs.lib.so" = "${os}/lib/vfs.lib.so"; |
|
}; |
|
|
|
testScript = '' |
|
run_genode_until {child "test-fs_report" exited with exit value 0} 15 |
|
''; |
|
}
|
|
|