Home | History | Annotate | Download | only in strace_test
      1 #!/bin/bash
      2 
      3 # Copyright (C) 2004 Dan Carpenter
      4 # This software is released under the terms of the GPL
      5 
      6 max_tests=25
      7 test_percent=20
      8 
      9 [[ $1 == "" ]] || max_tests=$1
     10 [[ $2 == "" ]] || test_percent=$2
     11 
     12 ./waker.sh &
     13 
     14 for i in `seq $max_tests` ; do
     15 	./run.sh $test_percent &
     16 done
     17 
     18