Skip to content

Commit b671424

Browse files
committed
Move scala/scala sources to ./scala/ from ../scala/
Needed for scala-infra.
1 parent 0199dc4 commit b671424

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/test/ScannerTest.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,6 @@ class ScannerTest extends DottyTest {
5858

5959
@Test
6060
def scanScala() = {
61-
scanDir("../scala/src")
61+
scanDir("./scala/src")
6262
}
6363
}

test/test/desugarPackage.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ object desugarPackage extends DeSugarTest {
1111
val start = System.nanoTime()
1212
val startNodes = Trees.ntrees
1313
parseDir("./src")
14-
parseDir("../scala/src")
14+
parseDir("./scala/src")
1515
val ms1 = (System.nanoTime() - start)/1000000
1616
val nodes = Trees.ntrees
1717
val buf = parsedTrees map desugarTree

test/test/parsePackage.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ object parsePackage extends ParserTest {
6666
nodes = 0
6767
val start = System.nanoTime()
6868
parseDir("./src")
69-
parseDir("../scala/src")
69+
parseDir("./scala/src")
7070
val ms1 = (System.nanoTime() - start)/1000000
7171
val buf = parsedTrees map transformer.transform
7272
val ms2 = (System.nanoTime() - start)/1000000

0 commit comments

Comments
 (0)