aboutsummaryrefslogtreecommitdiff
path: root/test/dotc/tests.scala
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2016-10-28 22:52:16 +0200
committerGuillaume Martres <smarter@ubuntu.com>2016-11-22 01:35:06 +0100
commit0dc738dd1377577a4004bfe158b11bfb1fa59a9d (patch)
tree0756502d63341e2503254ca19f37693271c31220 /test/dotc/tests.scala
parent02a29c9f2127ea7b0cb0b05facd3afe8e2ec256a (diff)
downloaddotty-0dc738dd1377577a4004bfe158b11bfb1fa59a9d.tar.gz
dotty-0dc738dd1377577a4004bfe158b11bfb1fa59a9d.tar.bz2
dotty-0dc738dd1377577a4004bfe158b11bfb1fa59a9d.zip
Fix partest compilation of java-interop tests by moving them
Previously, the tests where all in tests/pos/java-interop which means that partest would try to run them as one single test, this failed because some of these tests define classes with the same name. We could fix this by putting them all in separate packages but for now it's simple to move them to tests/pos-java-interop (they will still be run individually as they should thanks to the `java_all` test defined in tests.scala)
Diffstat (limited to 'test/dotc/tests.scala')
-rw-r--r--test/dotc/tests.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/dotc/tests.scala b/test/dotc/tests.scala
index d96111dee..fd990c599 100644
--- a/test/dotc/tests.scala
+++ b/test/dotc/tests.scala
@@ -249,7 +249,7 @@ class tests extends CompilerTest {
dotcDir + "config/PathResolver.scala"
), List(/* "-Ylog:frontend", */ "-Xprompt") ++ staleSymbolError ++ twice)
- val javaDir = "./tests/pos/java-interop/"
+ val javaDir = "./tests/pos-java-interop/"
@Test def java_all = compileFiles(javaDir, twice)
//@Test def dotc_compilercommand = compileFile(dotcDir + "config/", "CompilerCommand")