Lines Matching +full:com +full:- +full:seq
3 # Bug 214923 - kqueue hangs with busy loop
4 # Test scenario by: Jihyun Yu <yjh0502@gmail.com>
11 [ -z `which watchman` ] && { echo "watchman is not installed"; exit 0; }
13 daemon sh -c "(cd ../testcases/swap; ./swap -t 5m -i 20 -h -l 100)" > \
17 rm -rf $dir
18 mkdir -p $dir
21 mkdir -p foo bar
22 seq -w 0 100 | xargs -n1 -I{} touch foo/{}.c
26 watchman -p -j --server-encoding=json > /dev/null &
28 while true; do find bar/ -type f | xargs -n1 -P5 -I'{}' mv '{}' foo; done &
30 while true; do find foo/ -type f | xargs -n1 -P5 -I'{}' mv '{}' bar; done &
34 while pgrep -q swap; do
35 pkill -9 swap
37 kill -9 $pids
42 rm -rf $dir