diff options
Diffstat (limited to 'tests/hash-check.nix')
-rw-r--r-- | tests/hash-check.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/hash-check.nix b/tests/hash-check.nix index bbe4fe24791f..4a8e9b8a8df9 100644 --- a/tests/hash-check.nix +++ b/tests/hash-check.nix @@ -4,14 +4,14 @@ let { name = "dependencies-input-1"; system = "i086-msdos"; builder = "/bar/sh"; - args = ["-e" "-x" ./dependencies.builder1.sh]; + args = ["-e" "-x" ./dummy]; }; input2 = derivation { name = "dependencies-input-2"; system = "i086-msdos"; builder = "/bar/sh"; - args = ["-e" "-x" ./dependencies.builder2.sh]; + args = ["-e" "-x" ./dummy]; outputHashMode = "recursive"; outputHashAlgo = "md5"; outputHash = "ffffffffffffffffffffffffffffffff"; @@ -21,7 +21,7 @@ let { name = "dependencies"; system = "i086-msdos"; builder = "/bar/sh"; - args = ["-e" "-x" (./dependencies.builder0.sh + "/FOOBAR/../.")]; + args = ["-e" "-x" (./dummy + "/FOOBAR/../.")]; input1 = input1 + "/."; inherit input2; }; |