#!/bin/sh -e
# Comment: This test is identical to fasttree since veryfasttree should be a drop in replacement

pkg=veryfasttree

if [ "$AUTOPKGTEST_TMP" = "" ] ; then
  AUTOPKGTEST_TMP=$(mktemp -d /tmp/${pkg}-test.XXXXXX)
  trap "rm -rf $AUTOPKGTEST_TMP" 0 INT QUIT ABRT PIPE TERM
fi

cd $AUTOPKGTEST_TMP

cp -a /usr/share/doc/${pkg}/test* .
gunzip -r *

VeryFastTree test.fasta > tree_file
VeryFastTree < test.phylip > tree_file

