Skip to content

Commit

Permalink
Add test file itself to the set to track compilation time.
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugene Vigdorchik committed Mar 7, 2012
1 parent e92ba43 commit efb9cde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/Defaults.scala
Expand Up @@ -332,7 +332,7 @@ object Defaults extends BuildCommon
case Some(ts) =>
import analysis.{relations => rel, apis}
rel.definesClass(test) flatMap {
f => (rel.internalSrcDeps(f) map apis.internal) ++ (rel.externalDeps(f) map apis.external)
f => ((rel.internalSrcDeps(f) + f) map apis.internal) ++ (rel.externalDeps(f) map apis.external)
} exists (_.compilation.startTime > ts)
}
}
Expand Down

0 comments on commit efb9cde

Please sign in to comment.