2
0
Fork 0
genodepkgs/tests/solo5.nix

20 lines
516 B
Nix
Raw Normal View History

2019-10-06 20:35:54 +02:00
{ pkgs, lib }:
with pkgs;
rec {
name = "solo5";
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ehmry ];
2019-10-08 09:48:45 +02:00
testConfig = lib.renderDhallInit ./solo5.dhall "{=}";
2019-10-06 20:35:54 +02:00
testScript = ''
2019-10-08 09:13:07 +02:00
collect_modules ${solo5.tests}/bin/*
collect_modules ${solo5}/lib/solo5-bindings-genode/solo5.lib.so
collect_modules ${genode.os}/bin/nic_loopback
collect_modules ${genode.os}/bin/ram_block
collect_modules ${genode.os}/bin/sequence
2019-10-07 21:58:35 +02:00
2019-10-08 09:48:45 +02:00
run_genode_until "Error: stack protector check failed" 30
2019-10-06 20:35:54 +02:00
'';
}