Skip to content

Commit 9d7d05d

Browse files
Merge pull request #6420 from dotty-staging/cleanup-from-tasty-blacklists
Cleanup --from-tasty blacklists
2 parents 97324d6 + 8c179d3 commit 9d7d05d

File tree

3 files changed

+5
-27
lines changed

3 files changed

+5
-27
lines changed
Lines changed: 2 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,5 @@
1-
# Wrong number of arguments (only on bootstrapped)
2-
i3130b.scala
3-
4-
# Missing position
1+
# has location not matching its contents: contains class mixins.Collections
52
collections_1.scala
63

7-
# MatchError in SymDenotation.sourceModule on a ThisType
4+
# Infinite loop
85
t3612.scala
9-
10-
# Fails on MacOS
11-
annot-bootstrap.scala
12-
13-
# ScalaRunTime cannot be unpickled because it is already loaded
14-
repeatedArgs213.scala
15-
16-
# Error printing parent constructors that are blocks
17-
default-super.scala
18-
19-
# Did not survive addition of type ascriptions in decompiled tests
20-
i3050.scala
21-
i4006b.scala
22-
i4006c.scala
23-
24-
# Not sure what's wring here
25-
i4203.scala
26-
t6278-synth-def.scala
Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# Closure type miss match
22
eff-dependent.scala
33

4-
# It seems we still harmonize types in fromTasty. Not sure where this happens
5-
puzzle.scala
6-
74
# We get: class Foo needs to be abstract, since implicit val x$1: TC is not defined
85
i2567.scala

compiler/test/dotty/tools/TestSources.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@ object TestSources {
4343
.filter(_.nonEmpty)
4444
.toList
4545

46-
assert(list.nonEmpty)
46+
if (list.isEmpty)
47+
println(s"$path is empty")
48+
4749
list
4850
}
4951

0 commit comments

Comments
 (0)