@@ -28,27 +28,42 @@ class FromTastyTests extends ParallelTesting {
28
28
implicit val testGroup : TestGroup = TestGroup (" posTestFromTasty" )
29
29
val (step1, step2) = compileTastyInDir(" ../tests/pos" , defaultOptions,
30
30
blacklist = Set (
31
+ // Owner discrepancy for refinements
31
32
" NoCyclicReference.scala" ,
32
- " depfuntype.scala" ,
33
- " hklub0.scala" ,
34
- " i0306.scala" ,
35
- " i1365.scala" ,
36
33
" i1795.scala" ,
37
- " i2345.scala" ,
34
+
35
+ // Cannot merge members
36
+ " depfuntype.scala" ,
37
+
38
+ // NPE in HKLambda.computeHash
38
39
" i2888.scala" ,
40
+ " i974.scala" ,
41
+ " t3800.scala" ,
42
+
43
+ // Type miss match after unpickling
39
44
" i2944.scala" ,
45
+ " t8023.scala" ,
46
+ " hklub0.scala" ,
47
+ " i1365.scala" ,
48
+
49
+ // Missing position
40
50
" i3000.scala" ,
41
- " i536.scala" ,
42
- " i974.scala" ,
43
51
" t1203a.scala" ,
44
52
" t2260.scala" ,
45
- " t3612.scala" , // Test never finishes
46
- " t3800.scala" ,
47
53
" t4579.scala" ,
48
- " t8023.scala" ,
49
54
" tcpoly_ticket2096.scala" ,
50
55
" t247.scala" ,
56
+ " i2345.scala" ,
57
+ " i0306.scala" ,
58
+
59
+ // cyclic type references
60
+ " i536.scala" ,
61
+
62
+ // Anonymous method not defined
51
63
" i3067.scala" ,
64
+
65
+ // Infinite compilation
66
+ " t3612.scala" ,
52
67
)
53
68
)
54
69
step1.checkCompile() // Compile all files to generate the class files with tasty
@@ -65,14 +80,26 @@ class FromTastyTests extends ParallelTesting {
65
80
implicit val testGroup : TestGroup = TestGroup (" runTestFromTasty" )
66
81
val (step1, step2) = compileTastyInDir(" ../tests/run" , defaultOptions,
67
82
blacklist = Set (
83
+ " t3613.scala" ,
84
+
85
+ // Missing position
68
86
" Course-2002-13.scala" ,
69
87
" bridges.scala" ,
70
- " eff-dependent.scala" ,
71
- " enum-approx.scala" ,
72
88
" i2337.scala" ,
73
89
" i2337b.scala" ,
90
+ " enum-approx.scala" ,
74
91
" inlineForeach.scala" ,
92
+ " scala2trait-lazyval.scala" ,
93
+ " t3452f.scala" ,
94
+
95
+ // Closure type miss match
96
+ " eff-dependent.scala" ,
97
+
98
+ // Unpickling tree without owner
75
99
" patmat-bind-typed.scala" ,
100
+ " t8395.scala" ,
101
+
102
+ // Issue unpickling universes
76
103
" phantom-decls-1.scala" ,
77
104
" phantom-decls-3.scala" ,
78
105
" phantom-decls-5.scala" ,
@@ -85,10 +112,6 @@ class FromTastyTests extends ParallelTesting {
85
112
" phantom-poly-2.scala" ,
86
113
" phantom-poly-3.scala" ,
87
114
" phantom-poly-4.scala" ,
88
- " scala2trait-lazyval.scala" ,
89
- " t3452f.scala" ,
90
- " t8395.scala" ,
91
- " t3613.scala" ,
92
115
)
93
116
)
94
117
step1.checkCompile() // Compile all files to generate the class files with tasty
0 commit comments