Skip to content

Commit 6b0c565

Browse files
committed
Use new sbt-based bootstrap for partest too
`partest` and `partest-only` are now run through `dotty-compiler-bootstrapped`. The old bootstrapping mechanism is deleted since it has been unmaintained and broken for several months and that I do not wish to maintain two bootstrapping mechanisms.
1 parent c3f20b6 commit 6b0c565

File tree

2 files changed

+6
-51
lines changed

2 files changed

+6
-51
lines changed

compiler/test/dotc/build.scala

Lines changed: 0 additions & 40 deletions
This file was deleted.

project/Build.scala

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -119,23 +119,18 @@ object DottyBuild extends Build {
119119
addCommandAlias("run", "dotty-compiler/run") ++
120120
addCommandAlias(
121121
"partest",
122-
";packageAll" +
123-
";dotty-compiler/test:runMain dotc.build" +
124-
";dotty-compiler/lockPartestFile" +
125-
";dotty-compiler/test:test" +
126-
";dotty-compiler/runPartestRunner"
122+
";dotty-compiler-bootstrapped/lockPartestFile" +
123+
";dotty-compiler-bootstrapped/test:test" +
124+
";dotty-compiler-bootstrapped/runPartestRunner"
127125
) ++
128126
addCommandAlias(
129127
"partest-only",
130-
";packageAll" +
131-
";dotty-compiler/test:runMain dotc.build" +
132-
";dotty-compiler/lockPartestFile" +
133-
";dotty-compiler/test:test-only dotc.tests" +
134-
";dotty-compiler/runPartestRunner"
128+
";dotty-compiler-bootstrapped/lockPartestFile" +
129+
";dotty-compiler-bootstrapped/test:test-only dotc.tests" +
130+
";dotty-compiler-bootstrapped/runPartestRunner"
135131
) ++
136132
addCommandAlias(
137133
"partest-only-no-bootstrap",
138-
";packageAll" +
139134
";dotty-compiler/lockPartestFile" +
140135
";dotty-compiler/test:test-only dotc.tests" +
141136
";dotty-compiler/runPartestRunner"

0 commit comments

Comments
 (0)