diff options
author | Ben Elliston <bje@gnu.org> | 2004-02-17 02:54:23 +0000 |
---|---|---|
committer | Ben Elliston <bje@gnu.org> | 2004-02-17 02:54:23 +0000 |
commit | 504776814fa56295c4cff40d78a1be446f851a7c (patch) | |
tree | 6bacce09711930ff4cae88347bdce6aea788c749 /runtest.exp | |
parent | 550dfd73cc777c5a5ac2bd7bbebab4c08becd6e2 (diff) | |
download | dejagnu-504776814fa56295c4cff40d78a1be446f851a7c.zip dejagnu-504776814fa56295c4cff40d78a1be446f851a7c.tar.gz dejagnu-504776814fa56295c4cff40d78a1be446f851a7c.tar.bz2 |
* runtest.exp: Do not trap SIGSEGV.
Diffstat (limited to 'runtest.exp')
-rwxr-xr-x | runtest.exp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/runtest.exp b/runtest.exp index 1d0084d..f37c552 100755 --- a/runtest.exp +++ b/runtest.exp @@ -1502,8 +1502,7 @@ proc runtest { test_file_name } { if ![exp_debug] { foreach sig "{SIGTERM {terminated}} \ {SIGINT {interrupted by user}} \ - {SIGQUIT {interrupted by user}} \ - {SIGSEGV {segmentation violation}}" { + {SIGQUIT {interrupted by user}}" { set signal [lindex $sig 0] set str [lindex $sig 1] trap "send_error \"got a \[trap -name\] signal, $str \\n\"; log_and_exit;" $signal |