work around core dump created by running ipython4

* tests/Makefile.am (distclean-local): Erase python/core.
This commit is contained in:
Alexandre Duret-Lutz 2016-01-14 18:37:48 +01:00
parent 51483b9b7f
commit 66d8f3ce09

View file

@ -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 ##############################