Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Run also comparison after the test command to verify correctness
· 0e3e82bd
Andreas Tille
authored
Dec 04, 2019
0e3e82bd
Upload to unstable
· 11913dcf
Andreas Tille
authored
Dec 04, 2019
11913dcf
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
11913dcf
parsinsert (1.04-6) unstable; urgency=medium
* Run also comparison after the test command to verify correctness
-- Andreas Tille <tille@debian.org> Wed, 04 Dec 2019 20:41:33 +0100
parsinsert (1.04-5) unstable; urgency=medium
* Run command from autopkgtest also as runtime-test to spot issues
...
...
debian/rules
View file @
11913dcf
...
...
@@ -20,7 +20,11 @@ ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
cd debian/tests/test_data && \
$(CURDIR)/parsinsert -d0 -c80 -n1 set1000.fasta -m lanemask.txt -x rdp.taxonomy \
-l set1000.log -o set1000.results -t core_rdp.ntree \
-s core_rdp.fasta
-s core_rdp.fasta && \
cmp -s right_results set1000.results || { \
echo "incorrect result" ; \
exit 1 ; \
}
endif
# Note a manpage was generated using:
...
...