]> andersk Git - openssh.git/commitdiff
- [regress/rekey.sh] Remove dependence on /dev/zero (not all platforms have
authordtucker <dtucker>
Thu, 4 Sep 2003 04:02:56 +0000 (04:02 +0000)
committerdtucker <dtucker>
Thu, 4 Sep 2003 04:02:56 +0000 (04:02 +0000)
     it).  The sparse file will take less disk space too.

ChangeLog
regress/rekey.sh

index 94780eb3404dba0b58c749820dd77c623cf8037f..716d973f350601863dddfca058990243a873169b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -7,6 +7,8 @@
    - [regress/agent-ptrace.sh] Skip tests if platform doesn't support it or
      gdb cannot be found.
    - [regress/reconfigure/sh] Make path to sshd fully qualified if required.
+   - [regress/rekey.sh] Remove dependence on /dev/zero (not all platforms have
+     it).  The sparse file will take less disk space too.
 
 20030903
  - (djm) OpenBSD CVS Sync
index 26848d27b56c4618426fd1db61422ab5fc4e77e7..6b7e845eccfc1f624d3cfc7e5b135a714a81d786 100644 (file)
@@ -8,7 +8,7 @@ COPY=${OBJ}/copy
 LOG=${OBJ}/log
 
 rm -f ${COPY} ${LOG} ${DATA}
-dd if=/dev/zero of=${DATA} bs=1k count=512 > /dev/null 2>&1
+dd if=/bin/ls${EXEEXT} of=${DATA} bs=1k seek=511 count=1 > /dev/null 2>&1
 
 for s in 16 1k 128k 256k; do
        trace "rekeylimit ${s}"
This page took 0.03948 seconds and 5 git commands to generate.