aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_bt.sh
AgeCommit message (Collapse)Author
2019-02-20Use setrlimit instead of ulimit -c in backtrace testsrl1987
2018-07-16Try putting ulimit -c 0 in test_bt.sh to see if it fixes bug 26787Nick Mathewson
2016-06-20More coverage in backtrace.cNick Mathewson
2016-05-20Prevent ASAN from registering a SIGSEGV handlercypherpunks
AddressSanitizer's (ASAN) SIGSEGV handler overrides the backtrace handler and prevents it from printing its backtrace. The output of ASAN is different from what 'bt_test.py' expects and causes backtrace test failures. The 'allow_user_segv_handler' option allows applications to set their own SIGSEGV handler but is not supported by older GCC versions. These older GCC versions do support the 'handle_segv' which prevents ASAN from setting its SIGSEGV handler.
2016-05-02test_bt.sh: Check stderr for backtrace as well as stdout.Nick Mathewson
addresssanitizer likes to put backtraces on stderr.
2016-02-01Treat bt_test.py failures as "SKIP" on freebsd.Nick Mathewson
Closes #18204.
2015-09-29Skip tests if backtrace support not compiled-inMarcin Cieślak
FreeBSD needs -lexecinfo to fully support backtrace reporting.
2015-09-24Add more quotes in the test scriptsNick Mathewson
2015-09-24Stop trying to generate test scripts via autoconf substitution.Nick Mathewson
Use environment variables instead. This repairs 'make distcheck', which was running into trouble when it tried to chmod the generated scripts. Fixes 17148.