aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--project/Build.scala12
1 files changed, 6 insertions, 6 deletions
diff --git a/project/Build.scala b/project/Build.scala
index e08780613..0f8594556 100644
--- a/project/Build.scala
+++ b/project/Build.scala
@@ -90,25 +90,25 @@ object DottyBuild extends Build {
"partest",
";packageAll" +
";dotty-compiler/test:runMain dotc.build" +
- ";lockPartestFile" +
+ ";dotty-compiler/lockPartestFile" +
";dotty-compiler/test:test" +
- ";runPartestRunner" +
+ ";dotty-compiler/runPartestRunner" +
";bin/test" // script tests need to run after the unit tests
) ++
addCommandAlias(
"partest-only",
";packageAll" +
";dotty-compiler/test:runMain dotc.build" +
- ";lockPartestFile" +
+ ";dotty-compiler/lockPartestFile" +
";dotty-compiler/test:test-only dotc.tests" +
- ";runPartestRunner"
+ ";dotty-compiler/runPartestRunner"
) ++
addCommandAlias(
"partest-only-no-bootstrap",
";packageAll" +
- ";lockPartestFile" +
+ ";dotty-compiler/lockPartestFile" +
";dotty-compiler/test:test-only dotc.tests" +
- ";runPartestRunner"
+ ";dotty-compiler/runPartestRunner"
)
).
settings(publishing)