2014-07-31 21:08:37 +02:00
|
|
|
#!/bin/bash
|
|
|
|
echo > crash.log
|
|
|
|
while :; do
|
2014-08-06 21:03:46 +02:00
|
|
|
exit=0
|
|
|
|
while (( $exit == 0)); do
|
|
|
|
duration=$(($RANDOM%10000))
|
|
|
|
python3 -m qutebrowser --debug ":later $duration quit" http://www.heise.de/
|
|
|
|
exit=$?
|
|
|
|
done
|
|
|
|
echo "$(date) $exit $duration" >> crash.log
|
2014-07-31 21:08:37 +02:00
|
|
|
done
|