File tree 4 files changed +15
-3
lines changed
src/dotty/tools/dotc/transform
4 files changed +15
-3
lines changed Original file line number Diff line number Diff line change @@ -127,7 +127,8 @@ object DottyBuild extends Build {
127
127
(" -DpartestParentID=" + pid) :: tuning ::: agentOptions ::: travis_build ::: fullpath
128
128
}
129
129
) ++ addCommandAlias(" partest" , " ;test:package;package;test:runMain dotc.build;lockPartestFile;test:test;runPartestRunner" ) ++
130
- addCommandAlias(" partest-only" , " ;test:package;package;test:runMain dotc.build;lockPartestFile;test:test-only dotc.tests;runPartestRunner" )
130
+ addCommandAlias(" partest-only" , " ;test:package;package;test:runMain dotc.build;lockPartestFile;test:test-only dotc.tests;runPartestRunner" ) ++
131
+ addCommandAlias(" partest-only-no-bootstrap" , " ;test:package;package; lockPartestFile;test:test-only dotc.tests;runPartestRunner" )
131
132
132
133
lazy val dotty = Project (id = " dotty" , base = file(" ." ), settings = defaults)
133
134
Original file line number Diff line number Diff line change @@ -7,5 +7,5 @@ scriptsDir="$baseDir/scripts"
7
7
git log --pretty=format:" %h - %an, %aD : %s" -n 10
8
8
9
9
update DarkDimius scala scala-scala dotty-library
10
- sbt $sbtArgs update compile " partest-only --show-diff --verbose"
10
+ sbt $sbtArgs update compile " partest-only-no-bootstrap --show-diff --verbose"
11
11
Original file line number Diff line number Diff line change
1
+ #! /bin/bash -e
2
+
3
+ baseDir=${WORKSPACE-`pwd`}
4
+ scriptsDir=" $baseDir /scripts"
5
+ . $scriptsDir /common
6
+
7
+ git log --pretty=format:" %h - %an, %aD : %s" -n 10
8
+
9
+ update DarkDimius scala scala-scala dotty-library
10
+ sbt $sbtArgs update compile " partest-only --show-diff --verbose"
11
+
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ class TreeChecker extends Phase with SymTransformer {
123
123
val checker = new Checker (previousPhases(phasesToRun.toList)(ctx))
124
124
try checker.typedExpr(ctx.compilationUnit.tpdTree)(checkingCtx)
125
125
catch {
126
- case NonFatal (ex) =>
126
+ case NonFatal (ex) => // TODO CHECK. Check that we are bootstrapped
127
127
implicit val ctx : Context = checkingCtx
128
128
ctx.println(i " *** error while checking ${ctx.compilationUnit} after phase ${checkingCtx.phase.prev} *** " )
129
129
ctx.println(ex.toString)
You can’t perform that action at this time.
0 commit comments