2
0
Fork 0

Remove libc test

The test-libc binary is not published by Genode Labs.
This commit is contained in:
Ehmry - 2019-12-02 18:04:40 +01:00
parent 53a18acd08
commit b78a960252
2 changed files with 0 additions and 24 deletions

View File

@ -5,7 +5,6 @@
let
tests = call: {
fs_report = call ./fs_report.nix { };
libc = call ./libc.nix { };
log = call ./log.nix { };
signal = call ./signal.nix { };
# solo5 = call ./solo5 { };

View File

@ -1,23 +0,0 @@
{ testEnv, pkgs, depot }:
with pkgs;
testEnv.mkTest rec {
name = "libc";
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ehmry ];
testConfig = testEnv.lib.renderDhallInit ./libc.dhall "{=}";
bootModules = {
"libc.lib.so" = "${depot.libc}/lib/libc.lib.so";
"libm.lib.so" = "${depot.libc}/lib/libm.lib.so";
"posix.lib.so" = "${depot.posix}/lib/posix.lib.so";
"test-libc" = "${depot.test-libc}/bin/test-libc";
"vfs.lib.so" = "${os}/lib/vfs.lib.so";
};
qemuMem = 384;
testScript = ''
run_genode_until "child .* exited with exit value 0.*\n" 30
'';
}