about summary refs log tree commit diff
path: root/pkgs/development/compilers/openjdk
diff options
context:
space:
mode:
authorArnout Engelen <arnout@bzzt.net>2021-08-05 09:20:41 +0200
committerArnout Engelen <arnout@bzzt.net>2021-08-05 09:20:41 +0200
commit380b350fb3b1dc3c0751a8aab88706d8366b4796 (patch)
treeda0ca71645b73cb315692e18663f7f0063cad49c /pkgs/development/compilers/openjdk
parentc464dc811babfe316ed4ab7bbc12351122e69dd7 (diff)
jre-minimal: remove unnecessary test file
Looks like we meant to move this file to `tests/test_jre_minimal.nix` but
somehow we accidentally duplicated it.
Diffstat (limited to 'pkgs/development/compilers/openjdk')
-rw-r--r--pkgs/development/compilers/openjdk/jre_minimal_test1.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/pkgs/development/compilers/openjdk/jre_minimal_test1.nix b/pkgs/development/compilers/openjdk/jre_minimal_test1.nix
deleted file mode 100644
index eebd11fb2fdf6..0000000000000
--- a/pkgs/development/compilers/openjdk/jre_minimal_test1.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ runCommand
-, callPackage
-, jdk
-, jre_minimal
-}:
-
-let
-  hello = callPackage tests/hello.nix {
-    jdk = jdk;
-    jre = jre_minimal;
-  };
-in
-  runCommand "test" {} ''
-    ${hello}/bin/hello | grep "Hello, world!"
-    touch $out
-  ''