Skip to content

Commit 06b2acd

Browse files
committed
Add test for debug and verbose
1 parent 168e1f1 commit 06b2acd

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

tests/02_simple_tree/Makefile

+10-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,12 @@ FASTAS=$(shell tar -tf test_spneumo.tar.xz)
1212
## Compare trees ##
1313
###################
1414

15-
all: tree.precomputed.newick tree.default.nw tree.file_list.nw tree.file_list_proc_subst.nw
15+
all: \
16+
tree.precomputed.newick \
17+
tree.default.nw \
18+
tree.default_verbose_debug.nw \
19+
tree.file_list.nw \
20+
tree.file_list_proc_subst.nw
1621
for x in $^; do \
1722
2>&1 echo Testing "$$x"; \
1823
diff $$x tree.precomputed.newick; \
@@ -26,6 +31,10 @@ tree.default.nw: file_list.txt
2631
../../attotree/attotree.py $(shell cat $<) > "$@.tmp"
2732
mv "$@.tmp" "$@"
2833

34+
tree.default_verbose_debug.nw: file_list.txt
35+
../../attotree/attotree.py -V -D $(shell cat $<) > "$@.tmp"
36+
mv "$@.tmp" "$@"
37+
2938
tree.file_list.nw: file_list.txt
3039
../../attotree/attotree.py -L "$<" > "$@.tmp"
3140
mv "$@.tmp" "$@"

0 commit comments

Comments
 (0)