summaryrefslogtreecommitdiff
path: root/test/files/run
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2006-09-25 08:14:34 +0000
committerIulian Dragos <jaguarul@gmail.com>2006-09-25 08:14:34 +0000
commit96e5dc3d89398ef676528c5865a0b4e3edca0847 (patch)
treebbd314ab445944359067cd67d83adb300bc818b9 /test/files/run
parentd58bf70442df9c65a1b246f03e706ed3d6ca0717 (diff)
downloadscala-96e5dc3d89398ef676528c5865a0b4e3edca0847.tar.gz
scala-96e5dc3d89398ef676528c5865a0b4e3edca0847.tar.bz2
scala-96e5dc3d89398ef676528c5865a0b4e3edca0847.zip
Changed -cp to -classpath to make it compatible...
Changed -cp to -classpath to make it compatible with Java 1.4
Diffstat (limited to 'test/files/run')
-rw-r--r--test/files/run/inner.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/run/inner.scala b/test/files/run/inner.scala
index 5fb1487341..cb3b4922c8 100644
--- a/test/files/run/inner.scala
+++ b/test/files/run/inner.scala
@@ -61,7 +61,7 @@ object Scalatest {
val tmpfile = new FileWriter(tmpfilename)
tmpfile.write(src)
tmpfile.close
- exec("javac -d " + outputdir + " -cp " + classpath + " " + tmpfilename)
+ exec("javac -d " + outputdir + " -classpath " + classpath + " " + tmpfilename)
}
/** Execute cmd, wait for the process to end and pipe it's output to stdout */