summaryrefslogtreecommitdiff
path: root/test/files/run/t6039.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2013-05-31 04:08:40 -0700
committerPaul Phillips <paulp@improving.org>2013-05-31 04:08:40 -0700
commitcfef577e478161bd4d1e24626e0909c80c04e1b9 (patch)
tree0735619166325c61115de22d46c3c87a4af488f0 /test/files/run/t6039.scala
parent1c6a0cf75592c201e27a6e11140c6da87de67123 (diff)
parent9c2972379459f655f20da7cba88707ed27ac7c86 (diff)
downloadscala-cfef577e478161bd4d1e24626e0909c80c04e1b9.tar.gz
scala-cfef577e478161bd4d1e24626e0909c80c04e1b9.tar.bz2
scala-cfef577e478161bd4d1e24626e0909c80c04e1b9.zip
Merge pull request #2614 from paulp/pr/revert-fs
Revert "SI-6039 Harden against irrelevant filesystem details"
Diffstat (limited to 'test/files/run/t6039.scala')
-rw-r--r--test/files/run/t6039.scala18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/files/run/t6039.scala b/test/files/run/t6039.scala
deleted file mode 100644
index 9d811b0634..0000000000
--- a/test/files/run/t6039.scala
+++ /dev/null
@@ -1,18 +0,0 @@
-import scala.tools.partest._
-
-object Test extends StoreReporterDirectTest {
- private def compileCode(): Boolean = {
- new java.io.File("util") mkdirs
- val classpath = List(sys.props("partest.lib"), ".") mkString sys.props("path.separator")
- log(s"classpath = $classpath")
- compileString(newCompiler("-cp", classpath, "-d", testOutput.path))(packageCode)
- }
- def code = ???
- def packageCode = """
-package scala.bippy
-class A { new util.Random() }
-"""
- def show(): Unit = {
- assert(compileCode(), filteredInfos take 1 mkString "")
- }
-}