]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/valgrind/src/valgrind-3.6.0-svn/gdbserver_tests/invoker
update
[l4.git] / l4 / pkg / valgrind / src / valgrind-3.6.0-svn / gdbserver_tests / invoker
1 #! /bin/sh
2
3 # invoker is used to test the invocation of gdbserver.
4 # The first argument is the nr of times vgdb has to be called.
5 # rest of args are given to vgdb
6 # At the end of the loop, an additional call is done
7 # but adding " -c vg.kill" to kill Valgrind process.
8
9 LOOPS=$1
10 shift
11
12 i=0
13 while [ $i -lt $LOOPS ]
14 do
15    ./vgdb "$@"  
16    i=`expr $i + 1`
17 done
18
19 ./vgdb "$@"  -c vg.kill