aboutsummaryrefslogtreecommitdiff
path: root/project
diff options
context:
space:
mode:
authorGuillaume Martres <smarter@ubuntu.com>2016-11-14 17:52:32 +0100
committerGuillaume Martres <smarter@ubuntu.com>2016-11-22 01:35:07 +0100
commitcc56d3d977eab5fa88f0a1b0ced5bd4f99accae9 (patch)
tree9a481d574423c00f9f517cc5237c21cdb2524eed /project
parent8488557471dd6b75dcaec73e843c2115e59241cd (diff)
downloaddotty-cc56d3d977eab5fa88f0a1b0ced5bd4f99accae9.tar.gz
dotty-cc56d3d977eab5fa88f0a1b0ced5bd4f99accae9.tar.bz2
dotty-cc56d3d977eab5fa88f0a1b0ced5bd4f99accae9.zip
Fix partest commands
Diffstat (limited to 'project')
-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)