1 2 3 4 5 6 7 8 9 10
|
#!/bin/sh -e
hostarch=$(dpkg-architecture -qDEB_HOST_ARCH)
# Ignore single test on armhf and ppc64el
if [ "$hostarch" = "armhf" -o "$hostarch" = "ppc64el" ] ; then
sed -i -e '/^test_that."librarySizeFactors works as expected"/,/^})/d' tests/testthat/test-size-factors.R
sed -i -e '/^test_that."logNormCounts works for SCE objects (.*)"/,/^})/d' \
-e '/^test_that."logNormCounts works for SE objects"/,/^})/d' \
-e '/^test_that."normalizeCounts works as expected"/,/^})/d' tests/testthat/test-norm.R
fi
|