# 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.") ''; }