*** empty log message ***
[arla.git] / tests / parallel-read
blob805efbe57a69b78573f130fc8f6b636944c10517
1 #!/bin/sh
2 # $Id$
3 FS=${FS:-${objdir}/../appl/fs/fs}
4 FILE=$AFSROOT/stacken.kth.se/ftp/pub/gnu/emacs/emacs-22.1.tar.gz
5 ${FS} flush $FILE
7 #see if parallel fetches cause deadlock
8 for i in 1 2 3; do
9 dd if=$FILE bs=64k count=10 > /dev/null >&4 2>&4 &
10 done
12 wait