From e8029e1474b701184840f6e0abea51966d048831 Mon Sep 17 00:00:00 2001 From: Alexander Kyte Date: Fri, 27 May 2016 13:56:02 -0400 Subject: [PATCH] [mobile_static] Use mobile_static paths in mono/mini tests when necessary --- mono/mini/test_op_il_seq_point.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/mono/mini/test_op_il_seq_point.sh b/mono/mini/test_op_il_seq_point.sh index b89cc887ff1..a22c14b08ea 100755 --- a/mono/mini/test_op_il_seq_point.sh +++ b/mono/mini/test_op_il_seq_point.sh @@ -1,7 +1,8 @@ #!/bin/bash -TEST_FILE=$1 -USE_AOT=$2 +DEFAULT_PROFILE=$1 +TEST_FILE=$2 +USE_AOT=$3 TMP_FILE_PREFIX=$(basename $0).tmp BASEDIR=$(dirname $0) @@ -11,7 +12,7 @@ case "$(uname -s)" in *) PLATFORM_PATH_SEPARATOR=':';; esac -MONO_PATH=$BASEDIR/../../mcs/class/lib/net_4_x$PLATFORM_PATH_SEPARATOR$BASEDIR +MONO_PATH=$BASEDIR/../../mcs/class/lib/$DEFAULT_PROFILE$PLATFORM_PATH_SEPARATOR$BASEDIR RUNTIME=$BASEDIR/../../runtime/mono-wrapper trap "rm -rf ${TMP_FILE_PREFIX}*" EXIT -- 2.11.4.GIT