Skip to content

Commit cc56d3d

Browse files
committed
Fix partest commands
1 parent 8488557 commit cc56d3d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

project/Build.scala

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,25 +90,25 @@ object DottyBuild extends Build {
9090
"partest",
9191
";packageAll" +
9292
";dotty-compiler/test:runMain dotc.build" +
93-
";lockPartestFile" +
93+
";dotty-compiler/lockPartestFile" +
9494
";dotty-compiler/test:test" +
95-
";runPartestRunner" +
95+
";dotty-compiler/runPartestRunner" +
9696
";bin/test" // script tests need to run after the unit tests
9797
) ++
9898
addCommandAlias(
9999
"partest-only",
100100
";packageAll" +
101101
";dotty-compiler/test:runMain dotc.build" +
102-
";lockPartestFile" +
102+
";dotty-compiler/lockPartestFile" +
103103
";dotty-compiler/test:test-only dotc.tests" +
104-
";runPartestRunner"
104+
";dotty-compiler/runPartestRunner"
105105
) ++
106106
addCommandAlias(
107107
"partest-only-no-bootstrap",
108108
";packageAll" +
109-
";lockPartestFile" +
109+
";dotty-compiler/lockPartestFile" +
110110
";dotty-compiler/test:test-only dotc.tests" +
111-
";runPartestRunner"
111+
";dotty-compiler/runPartestRunner"
112112
)
113113
).
114114
settings(publishing)

0 commit comments

Comments
 (0)