summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xtest/partest5
1 files changed, 4 insertions, 1 deletions
diff --git a/test/partest b/test/partest
index b74e04a208..8d94facba3 100755
--- a/test/partest
+++ b/test/partest
@@ -119,10 +119,13 @@ if [ ! -z "${PARTEST_DEBUG}" ] ; then
partestDebugStr="-Dpartest.debug=${PARTEST_DEBUG}"
fi
+# note that variables which may intentionally be empty must not
+# be quoted: otherwise an empty string will appear as a command line
+# argument, and java will think that is the program to run.
"${JAVACMD:=java}" \
$JAVA_OPTS -cp "$EXT_CLASSPATH" \
${partestDebugStr} \
- "$color_opts" \
+ ${color_opts} \
-Dfile.encoding=UTF-8 \
-Dscala.home="${SCALA_HOME}" \
-Dpartest.javacmd="${JAVACMD}" \