From 66d8f3ce09ec797583c3a84482650be527036f5c Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Thu, 14 Jan 2016 18:37:48 +0100 Subject: [PATCH] work around core dump created by running ipython4 * tests/Makefile.am (distclean-local): Erase python/core. --- tests/Makefile.am | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/Makefile.am b/tests/Makefile.am index fd107e74c..a1db96e75 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -41,6 +41,12 @@ TESTS = $(TESTS_sanity) $(TESTS_misc) $(TESTS_tl) $(TESTS_graph) \ distclean-local: find . -name '*.dir' -type d -print | xargs rm -rf +## This is crazy: Even if the python test suite passes without +## reporting an error, it can non-deterministically leave a coredump +## behind. This happens with ipython 4.0.1 on ArchLinux; ipython +## somehow recovers from this so the only annoyance is that it can +## leave a coredump behind. + rm -f python/core ############################## CORE ##############################