Skip to content
Snippets Groups Projects
Commit bcf51274 authored by Andreas Tille's avatar Andreas Tille
Browse files

Hack around a problematic test

parent 3f28882a
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,15 @@ fi
cd $AUTOPKGTEST_TMP
cp -a /usr/share/doc/$debname/tests/* $AUTOPKGTEST_TMP
gunzip -r *
# FIXME: Hack around a problematic test
# One test results in
# -- 1. Error: Searches with entities work (#241) (@test-xml_find.R#136) --------
# Can't find `tests/testthat` in current directory.
# The following circumvents this by some not so clean trick
mkdir testthat/tests
ln -s $(pwd)/testthat testthat/tests/testthat
for testfile in *.R; do
echo "BEGIN TEST $testfile"
LC_ALL=C.UTF-8 R --no-save < $testfile
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment