Merge pull request #6329 from eed3si9n/fport/6326

[fport] synchronize access to stamps in testQuickFilter
This commit is contained in:
eugene yokota 2021-02-22 00:42:50 -05:00 committed by GitHub
commit ab2b396543
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1375,7 +1375,7 @@ object Defaults extends BuildCommon {
}
def noSuccessYet(test: String) = succeeded.get(test) match {
case None => true
case Some(ts) => stamp(test) > ts
case Some(ts) => stamps.synchronized(stamp(test)) > ts
}
args =>
for (filter <- selectedFilter(args))