ceph/qa/workunits/rados/test_hang.sh
David Zafman c48644d811 qa: Add workunit that hangs for manual thrasher testing
Signed-off-by: David Zafman <david.zafman@inktank.com>
2013-07-31 12:04:23 -07:00

9 lines
108 B
Bash
Executable File

#!/bin/sh -ex
# Hang forever for manual testing using the thrasher
while(true)
do
sleep 300
done
exit 0