Created
June 9, 2013 16:33
-
-
Save sharipov-ru/5744172 to your computer and use it in GitHub Desktop.
Simple raspberry pi stress testing script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
while : | |
do | |
echo "Performing new stress testing cycle..." | |
stress --cpu 20 --io 20 --vm 6 --vm-bytes 25M --timeout 120s | |
echo "Timeout..." | |
sleep 3 | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment