Replace tabs with spaces in quit_segfault_test.sh

This commit is contained in:
Florian Bruhin 2014-08-06 21:03:46 +02:00
parent 5a88028738
commit 4491e7db3e

View File

@ -1,11 +1,11 @@
#!/bin/bash #!/bin/bash
echo > crash.log echo > crash.log
while :; do while :; do
exit=0 exit=0
while (( $exit == 0)); do while (( $exit == 0)); do
duration=$(($RANDOM%10000)) duration=$(($RANDOM%10000))
python3 -m qutebrowser --debug ":later $duration quit" http://www.heise.de/ python3 -m qutebrowser --debug ":later $duration quit" http://www.heise.de/
exit=$? exit=$?
done done
echo "$(date) $exit $duration" >> crash.log echo "$(date) $exit $duration" >> crash.log
done done