about summary refs log tree commit diff
path: root/tests/binary-patching.nix
diff options
context:
space:
mode:
authorEelco Dolstra <e.dolstra@tudelft.nl>2010-11-17T17·32+0000
committerEelco Dolstra <e.dolstra@tudelft.nl>2010-11-17T17·32+0000
commit3d38a498404bf842ca479d42d18def1f472a6fb0 (patch)
treed2d7a67d3a33c835386724a59155b84e7ac2eae9 /tests/binary-patching.nix
parentf69626ed3eb9314bbdf9b0fe5497a0c3a3465d31 (diff)
* In the download size indication, take binary patches into account.
  Hopefully this doesn't slow things down too much.

Diffstat (limited to 'tests/binary-patching.nix')
-rw-r--r--tests/binary-patching.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/binary-patching.nix b/tests/binary-patching.nix
index 781bd76eba60..afa0a0fb3f84 100644
--- a/tests/binary-patching.nix
+++ b/tests/binary-patching.nix
@@ -9,7 +9,7 @@ mkDerivation {
       mkdir $out
       seq 1 1000000 > $out/foo
       ${if version == 2 then ''
-        echo bla >> $out/foo
+        seq 1000000 1010000 >> $out/foo
       '' else ""}
     '';
 }