Skip to content

Clean FromTastyTests blacklist #4271

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 8, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 2 additions & 54 deletions compiler/test/dotty/tools/dotc/FromTastyTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -28,39 +28,13 @@ class FromTastyTests extends ParallelTesting {
implicit val testGroup: TestGroup = TestGroup("posTestFromTasty")
val (step1, step2, step3) = compileTastyInDir("tests/pos", defaultOptions,
blacklist = Set(
"macro-deprecate-dont-touch-backquotedidents.scala",
"t247.scala",

// Wrong number of arguments
// Wrong number of arguments (only on bootstrapped)
"i3130b.scala",

// Class not found
"i3130a.scala",

// Owner discrepancy for refinements
"lambdalift-1.scala",

// Cannot merge members
"depfuntype.scala",

// Type miss match after unpickling
"hklub0.scala",

// Closure type miss match
"i4125.scala",

// Missing position
"t1203a.scala",
"t2260.scala",
"t4579.scala",
"tcpoly_ticket2096.scala",
"i2345.scala",
"t4731.scala",
"spec-super.scala",
"spec-sparsearray-old.scala",
"collections_1.scala",

// Infinite compilation
// MatchError in SymDenotation.sourceModule on a ThisType
"t3612.scala",
)
)
Expand All @@ -79,34 +53,8 @@ class FromTastyTests extends ParallelTesting {
implicit val testGroup: TestGroup = TestGroup("runTestFromTasty")
val (step1, step2, step3) = compileTastyInDir("tests/run", defaultOptions,
blacklist = Set(

"t7223.scala",
"t5428.scala",

// Missing position
"Course-2002-13.scala",
"bridges.scala",
"i2337.scala",
"i2337b.scala",
"scala2trait-lazyval.scala",
"t3452f.scala",

// Closure type miss match
"eff-dependent.scala",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know how to fix this one, but didn't have time to finish the fix.


// Issue unpickling universes
"phantom-decls-1.scala",
"phantom-decls-3.scala",
"phantom-decls-5.scala",
"phantom-hk-1.scala",
"phantom-hk-2.scala",
"phantom-in-value-class.scala",
"phantom-methods-3.scala",
"phantom-methods-4.scala",
"phantom-poly-1.scala",
"phantom-poly-2.scala",
"phantom-poly-3.scala",
"phantom-poly-4.scala",
)
)
step1.checkCompile() // Compile all files to generate the class files with tasty
Expand Down