Skip to content

Commit b59042c

Browse files
committed
Add a way to tests only a small subset of files
1 parent 69dda1c commit b59042c

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

dotty-scala-library-from-tasty-tests/test/LibraryTest.scala

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,13 @@ class TastyInspectorTest:
2323
@Test def testFromTasty: Unit =
2424
compileFromTasty(loadBlacklisted.union(compileBlacklisted))
2525

26+
@Ignore
27+
@Test def testWhiteListFromTasty: Unit =
28+
val whitelist = Set(
29+
"scala.collection.mutable.StringBuilder"
30+
)
31+
compileFromTasty(x => !whitelist(x))
32+
2633
@Test def blacklistNoDuplicates =
2734
def testDup(name: String, list: List[String], set: Set[String]) =
2835
assert(list.size == set.size,

0 commit comments

Comments
 (0)