1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
Description: preserve some of the test artifacts.
These artifacts are necessary to be able to run the test suite outside
the context of tree-puzzle source code, i.e. in autopkgtest context.
These test started to fail when running the clean target of the tests
directory, so this patch is an attempt to keep useful files while
keeping at bay unnecessary bloat, potentially introducing
non-deterministic data in resulting binary packages.
.
This change fixes a Debian specificity and would probably not be
welcome upstream, hence forwarding not needed.
Author: Étienne Mollier <emollier@debian.org>
Forwarded: not-needed
Last-Update: 2024-11-09
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- tree-puzzle.orig/tests/Makefile.am
+++ tree-puzzle/tests/Makefile.am
@@ -85,7 +85,5 @@
done
clean:
- rm -f *.param
- rm -f *.nucl *.prot *.bin *.trees *.ctrees
rm -f *.nucl.* *.prot.* *.bin.* *.trees.* *.ctrees.*
|