diff options
Diffstat (limited to 'tapset')
-rw-r--r-- | tapset/ChangeLog | 4 | ||||
-rwxr-xr-x | tapset/test/run.sh | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/tapset/ChangeLog b/tapset/ChangeLog index ba79be66..851d059e 100644 --- a/tapset/ChangeLog +++ b/tapset/ChangeLog @@ -1,3 +1,7 @@ +2006-09-26 David Smith <dsmith@redhat.com> + + * test/run.sh: Changed 'stpd' references to 'staprun'. + 2006-09-20 Josh Stone <joshua.i.stone@intel.com> PR 3233 diff --git a/tapset/test/run.sh b/tapset/test/run.sh index c842c72d..fd43591b 100755 --- a/tapset/test/run.sh +++ b/tapset/test/run.sh @@ -46,9 +46,9 @@ function spiteven { trap got_trap 1 2 3 6 function got_trap { echo -e "\nGot signaled. Cleaning up...\n" - if [ `ps -A|grep stpd|sed 's/^[ ^t]*//'|cut -d" " -f1 | wc -l` -gt 0 ] + if [ `ps -A|grep staprun|sed 's/^[ ^t]*//'|cut -d" " -f1 | wc -l` -gt 0 ] then - kill `ps -A|grep stpd|sed 's/^[ ^t]*//'|cut -d" " -f1` + kill `ps -A|grep staprun|sed 's/^[ ^t]*//'|cut -d" " -f1` fi if [ `ps -A|grep stap|sed 's/^[ ^t]*//'|cut -d" " -f1 | wc -l` -gt 0 ] then @@ -132,7 +132,7 @@ do pid=""; ast="" while [[ "$pid" == "" || "$ast" == "" ]] do - pid=`ps|grep stpd|sed 's/^[ ^t]*//'|cut -d" " -f1` + pid=`ps|grep staprun|sed 's/^[ ^t]*//'|cut -d" " -f1` ast=`ps|grep stap|sed 's/^[ ^t]*//'|cut -d" " -f1` sleep 1 done |