Skip to content

Commit b0147ea

Browse files
authored
Merge pull request #8926 from squid314/feat/add-sjs-tests
Enable many javalib/util/* tests other than Sets for Scala.js
2 parents b4338a8 + c484384 commit b0147ea

File tree

1 file changed

+22
-7
lines changed

1 file changed

+22
-7
lines changed

project/Build.scala

Lines changed: 22 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1030,13 +1030,28 @@ object Build {
10301030
++ (dir / "shared/src/test/scala/org/scalajs/testsuite/javalib/util/concurrent" ** "*.scala").get
10311031

10321032
++ (dir / "shared/src/test/scala/org/scalajs/testsuite/javalib/util" * (("*.scala": FileFilter)
1033-
-- "AbstractListTest.scala" -- "AbstractMapTest.scala" -- "AbstractSetTest.scala" -- "ArrayDequeTest.scala" -- "ArrayListTest.scala"
1034-
-- "CollectionsOnCheckedCollectionTest.scala" -- "CollectionsOnCheckedListTest.scala" -- "CollectionsOnCheckedMapTest.scala" -- "CollectionsOnCheckedSetTest.scala"
1035-
-- "CollectionsOnCollectionsTest.scala" -- "CollectionsOnListsTest.scala" -- "CollectionsOnMapsTest.scala" -- "CollectionsOnSetFromMapTest.scala" -- "CollectionsOnSetsTest.scala"
1036-
-- "CollectionsOnSynchronizedCollectionTest.scala" -- "CollectionsOnSynchronizedListTest.scala" -- "CollectionsOnSynchronizedMapTest.scala" -- "CollectionsOnSynchronizedSetTest.scala" -- "CollectionsTest.scala"
1037-
-- "DequeTest.scala" -- "EventObjectTest.scala" -- "FormatterTest.scala" -- "HashMapTest.scala" -- "HashSetTest.scala" -- "IdentityHashMapTest.scala"
1038-
-- "LinkedHashMapTest.scala" -- "LinkedHashSetTest.scala" -- "LinkedListTest.scala"
1039-
-- "PriorityQueueTest.scala" -- "SortedMapTest.scala" -- "SortedSetTest.scala" -- "TreeSetTest.scala")).get
1033+
-- "AbstractSetTest.scala"
1034+
-- "CollectionsOnCheckedCollectionTest.scala"
1035+
-- "CollectionsOnCheckedListTest.scala"
1036+
-- "CollectionsOnCheckedMapTest.scala"
1037+
-- "CollectionsOnCheckedSetTest.scala"
1038+
-- "CollectionsOnCollectionsTest.scala"
1039+
-- "CollectionsOnListsTest.scala"
1040+
-- "CollectionsOnMapsTest.scala"
1041+
-- "CollectionsOnSetFromMapTest.scala"
1042+
-- "CollectionsOnSetsTest.scala"
1043+
-- "CollectionsOnSynchronizedCollectionTest.scala"
1044+
-- "CollectionsOnSynchronizedListTest.scala"
1045+
-- "CollectionsOnSynchronizedMapTest.scala"
1046+
-- "CollectionsOnSynchronizedSetTest.scala"
1047+
-- "CollectionsTest.scala"
1048+
-- "EventObjectTest.scala"
1049+
-- "FormatterTest.scala"
1050+
-- "HashSetTest.scala"
1051+
-- "LinkedHashSetTest.scala"
1052+
-- "SortedSetTest.scala"
1053+
-- "TreeSetTest.scala"
1054+
)).get
10401055

10411056
++ (dir / "shared/src/test/scala/org/scalajs/testsuite/utils" ** "*.scala").get
10421057
++ (dir / "shared/src/test/scala/org/scalajs/testsuite/junit" ** "*.scala").get

0 commit comments

Comments
 (0)