parallel/testsuite/tests-to-run/niceload04.sh

13 lines
304 B
Bash
Raw Normal View History

2012-12-10 20:57:00 +00:00
#!/bin/bash
# force load > 10
while uptime | grep -v age:.[1-9][0-9].[0-9][0-9] >/dev/null ; do (timeout 5 nice burnP6 2>/dev/null &) done
sleep 1 &
PID1=$!
sleep 1 &
PID2=$!
sleep 1 &
PID3=$!
stdout /usr/bin/time -f %e niceload -l 8 -H -p $PID1 -p $PID2 -p $PID3 | perl -ne '$_ >= 5 and print "OK\n"'