Package: r-cran-vcd Version: 1.3.1 Severity: normal Tags: patch User: autopkgtest-de...@lists.alioth.debian.org Usertags: autopkgtest
Dear Maintainer, The tests are failing in debci using autopkgtest because it is trying to descompress *.gz files unnecessarily. Below the autopkgtest's log: adt-run [13:50:24]: test run-unit-test: [----------------------- gzip: *.gz: No such file or directory adt-run [13:50:25]: test run-unit-test: -----------------------] The tests cannot find the files with extension gz because they don't exist, removing the command 'gunzip *.gz' in debian/tests/run-unit-test the suit test keep failing, to finish the correction the suit test I needed to add the r-cran-mass dependency in debian/tests/control. Thanks for consider it! -- System Information: Debian Release: jessie/sid APT prefers unstable APT policy: (500, 'unstable') Architecture: amd64 (x86_64) Kernel: Linux 3.14-2-amd64 (SMP w/4 CPU cores) Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
diff -Nru r-cran-vcd-1.3-1.orig/debian/tests/control r-cran-vcd-1.3-1/debian/tests/control --- r-cran-vcd-1.3-1.orig/debian/tests/control 2014-08-06 22:42:06.802429247 -0300 +++ r-cran-vcd-1.3-1/debian/tests/control 2014-08-06 22:45:57.921587107 -0300 @@ -1,3 +1,3 @@ Tests: run-unit-test -Depends: @, r-cran-runit +Depends: @, r-cran-runit, r-cran-mass Restrictions: allow-stderr diff -Nru r-cran-vcd-1.3-1.orig/debian/tests/run-unit-test r-cran-vcd-1.3-1/debian/tests/run-unit-test --- r-cran-vcd-1.3-1.orig/debian/tests/run-unit-test 2014-08-06 22:42:06.802429247 -0300 +++ r-cran-vcd-1.3-1/debian/tests/run-unit-test 2014-08-06 22:42:25.378700769 -0300 @@ -5,7 +5,6 @@ ADTTMP=`mktemp -d /tmp/${pkg}-test.XXXXXX` fi cd $ADTTMP -gunzip *.gz cp /usr/share/doc/${pkg}/tests/* $ADTTMP for runtest in `ls *.R` ; do R --no-save < $runtest