2
0
Fork 0
genodepkgs/tests/rtc.nix

14 lines
341 B
Nix

# SPDX-License-Identifier: CC0-1.0
{ testEnv, pkgs, ... }:
with pkgs;
testEnv.mkTest {
name = "rtc";
meta.maintainers = with pkgs.stdenv.lib.maintainers; [ ehmry ];
testConfig = ./rtc.dhall;
testInputs = map pkgs.genodeSources.make [ "drivers/rtc" "test/rtc" ];
testScript = "run_genode_until {--- RTC test finished ---} 40";
}