2
0
genodepkgs/tests/log.nix
Emery Hemingway 40c1977779 Replace test framework
Adopt the Python test driver from NixOS. Temporarily drop Sotest
runs.
2020-06-01 17:15:03 +05:30

17 lines
275 B
Nix

# SPDX-License-Identifier: CC0-1.0
{ pkgs, ... }:
with pkgs;
{
name = "log";
machine = {
config = ./log.dhall;
inputs = [ (pkgs.genodeSources.depot "test-log") ];
};
testScript = ''
start_all()
machine.wait_until_serial_output("Test done.")
'';
}