Module Name:    src
Committed By:   pooka
Date:           Mon Feb 14 19:56:30 UTC 2011

Modified Files:
        src/tests/lib/librumphijack: t_tcpip.sh

Log Message:
explicitly set BLOCKSIZE so that we don't get fooled again


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/tests/lib/librumphijack/t_tcpip.sh

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/tests/lib/librumphijack/t_tcpip.sh
diff -u src/tests/lib/librumphijack/t_tcpip.sh:1.3 src/tests/lib/librumphijack/t_tcpip.sh:1.4
--- src/tests/lib/librumphijack/t_tcpip.sh:1.3	Mon Feb 14 19:54:29 2011
+++ src/tests/lib/librumphijack/t_tcpip.sh	Mon Feb 14 19:56:30 2011
@@ -1,4 +1,4 @@
-#       $NetBSD: t_tcpip.sh,v 1.3 2011/02/14 19:54:29 pooka Exp $
+#       $NetBSD: t_tcpip.sh,v 1.4 2011/02/14 19:56:30 pooka Exp $
 #
 # Copyright (c) 2011 The NetBSD Foundation, Inc.
 # All rights reserved.
@@ -134,8 +134,10 @@
 
 	atf_check -s exit:0 -o save:ssh.out				\
 	    env LD_PRELOAD=/usr/lib/librumphijack.so			\
-	    ssh -T -F ssh_config 127.0.0.1 ls -li $(pwd)/testdir
-	atf_check -s exit:0 -o file:ssh.out ls -li $(pwd)/testdir
+	    ssh -T -F ssh_config 127.0.0.1 env BLOCKSIZE=512		\
+	    ls -li $(pwd)/testdir
+	atf_check -s exit:0 -o file:ssh.out env BLOCKSIZE=512 		\
+	    ls -li $(pwd)/testdir
 }
 
 ssh_cleanup()

Reply via email to