sigil/tests/log.nix
Emery Hemingway a3f8d20d23 Tests: replace most of the Tcl code
Tcl is awful. Generate NOVA test ISOs with a shell script derivation.
2019-10-10 10:34:48 +02:00

14 lines
284 B
Nix

{ pkgs, lib }:
with pkgs;
rec {
name = "log";
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ehmry ];
testConfig = lib.renderDhallInit ./log.dhall "{=}";
bootModules.test-log = "${depot.test-log}/bin/test-log";
testScript = "run_genode_until {Test done.} 10";
}