diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-05-05 14:34:35 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-05-05 14:34:35 +0000 |
commit | 6c408c885a273f41113bd6b8dc8eed98c7aa6bb2 (patch) | |
tree | 937c7e05370a10dd04e47f8db8258de3cd93ebc4 | |
parent | 9cf04dff6a31906b53e2cbc3308dcdb6c24105fa (diff) |
Temporary disable the logic that runs gdb on a core dump, as it can't blindly
assume that the curl file is a proper binary, it is often a script file
produced by libtool.
-rwxr-xr-x | tests/runtests.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index bd5de0007..ff9e99bd7 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -1081,7 +1081,7 @@ sub singletest { if($dumped_core) { print "core dumped!\n"; - if($gdb) { + if(0+ && $gdb) { print "running gdb for post-mortem analysis:\n"; open(GDBCMD, ">log/gdbcmd2"); print GDBCMD "bt\n"; |