jre_minimal: add 2 simple tests

This commit is contained in:
Arnout Engelen
2021-04-28 21:01:46 +02:00
parent 1fe6ed37fd
commit b21d1ae872
6 changed files with 147 additions and 0 deletions
@@ -1,6 +1,7 @@
{ stdenv
, jdk
, lib
, callPackage
, modules ? [ "java.base" ]
}:
@@ -29,6 +30,10 @@ let
passthru = {
home = "${jre}";
tests = [
(callPackage ./tests/test_jre_minimal.nix {})
(callPackage ./tests/test_jre_minimal_with_logging.nix {})
];
};
};
in jre