diff options
author | fche <fche> | 2008-02-23 20:37:18 +0000 |
---|---|---|
committer | fche <fche> | 2008-02-23 20:37:18 +0000 |
commit | 4e14d2355434bef975d1e2a1ea05c1a159fcecde (patch) | |
tree | e9695c1a4defeacde66d53ea7d473b980cad2346 /testsuite/lib | |
parent | c7f8de3f00748047b92f117d77d18791eb7e8cca (diff) | |
download | systemtap-steved-4e14d2355434bef975d1e2a1ea05c1a159fcecde.tar.gz systemtap-steved-4e14d2355434bef975d1e2a1ea05c1a159fcecde.tar.xz systemtap-steved-4e14d2355434bef975d1e2a1ea05c1a159fcecde.zip |
PR5770: false systemtap/eof/timeout messages in testsuite.log
2008-02-23 Frank Ch. Eigler <fche@elastic.org>
* */*.exp: Change all "send \003" to "exec kill -INT -<pgrp>" in order
to more reliably kill an inferior stap/stapio/staprun process group.
Diffstat (limited to 'testsuite/lib')
-rw-r--r-- | testsuite/lib/stap_run.exp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/testsuite/lib/stap_run.exp b/testsuite/lib/stap_run.exp index 5bd1549c..c2b4e74d 100644 --- a/testsuite/lib/stap_run.exp +++ b/testsuite/lib/stap_run.exp @@ -50,7 +50,7 @@ proc stap_run { TEST_NAME {LOAD_GEN_FUNCTION ""} {OUTPUT_CHECK_STRING ""} args } } } - send "\003" + exec kill -INT -[exp_pid] # check the output to see if it is sane set output "^systemtap ending probe\r\n$OUTPUT_CHECK_STRING" @@ -78,7 +78,8 @@ proc stap_run { TEST_NAME {LOAD_GEN_FUNCTION ""} {OUTPUT_CHECK_STRING ""} args } } } -re "semantic error:" { fail "$TEST_NAME compilation" } - timeout { fail "$TEST_NAME startup (timeout)"; send "\003" } + timeout { fail "$TEST_NAME startup (timeout)" + exec kill -INT [exp_pid] } eof { fail "$TEST_NAME startup (eof)" } } catch close |