Skip to content
Snippets Groups Projects
Commit 9ba2c5b1 authored by Mick Jordan's avatar Mick Jordan
Browse files

test install pakages OS indepdence fixes

parent 905ae135
No related branches found
No related tags found
No related merge requests found
......@@ -33,14 +33,17 @@ source="${BASH_SOURCE[0]}"
while [ -h "$source" ] ; do source="$(readlink "$source")"; done
PRIMARY_PATH="$( cd -P "$( dirname "$source" )" && pwd )"/../..
mx=`which mx`
if [ -z "$mx"] ; then
which mx >/dev/null 2>&1
whichrc=$?
if [ $whichrc == 1 ] ; then
if [ -z "$MX_HOME" ] ; then
echo "Error: mx cannot be found: add to PATH or set MX_HOME"
exit 1
echo "Error: mx cannot be found: add to PATH or set MX_HOME"
exit 1
else
mx=$MX_HOME/mx
mx=$MX_HOME/mx
fi
else
mx=`which mx`
fi
exec $mx $MX_R_GLOBAL_ARGS R $MX_R_CMD_ARGS "$@"
......@@ -29,14 +29,17 @@ source="${BASH_SOURCE[0]}"
while [ -h "$source" ] ; do source="$(readlink "$source")"; done
PRIMARY_PATH="$( cd -P "$( dirname "$source" )" && pwd )"/../..
mx=`which mx`
if [ -z "$mx"] ; then
which mx >/dev/null 2>&1
whichrc=$?
if [ $whichrc == 1 ] ; then
if [ -z "$MX_HOME" ] ; then
echo "Error: mx cannot be found: add to PATH or set MX_HOME"
exit 1
echo "Error: mx cannot be found: add to PATH or set MX_HOME"
exit 1
else
mx=$MX_HOME/mx
mx=$MX_HOME/mx
fi
else
mx=`which mx`
fi
exec $mx $MX_R_GLOBAL_ARGS Rscript $MX_R_CMD_ARGS "$@"
......@@ -85,7 +85,7 @@ public class TestRPackages extends TestBase {
Map<String, String> env = pb.environment();
env.put("R_LIBS_USER", rpackagesLibs.toString());
if (!generatingExpected()) {
env.put("R_INSTALL_TAR", "/usr/bin/tar");
env.put("R_INSTALL_TAR", REnvVars.get("TAR"));
}
try {
if (FastROptions.debugMatches("TestRPackages")) {
......
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