@@ -1025,29 +1025,15 @@ object Build {
1025
1025
(dir / " shared/src/test/scala" ** ((" *.scala" : FileFilter )
1026
1026
-- " ReflectiveCallTest.scala" // uses many forms of structural calls that are not allowed in Scala 3 anymore
1027
1027
-- " EnumerationTest.scala" // scala.Enumeration support for Scala.js is not implemented in dotc (yet)
1028
- -- " SymbolTest.scala" // uses the old literal symbol syntax, pending update upstream
1029
-
1030
- // all the following depend on HashSetTest and LinkedHashSetTest ...
1031
- -- " CollectionsOnCheckedCollectionTest.scala"
1032
- -- " CollectionsOnCheckedListTest.scala"
1033
- -- " CollectionsOnCheckedSetTest.scala"
1034
- -- " CollectionsOnSetsTest.scala"
1035
- -- " CollectionsOnSynchronizedCollectionTest.scala"
1036
- -- " CollectionsOnSynchronizedListTest.scala"
1037
- -- " CollectionsOnSynchronizedSetTest.scala"
1038
-
1039
- // ... which do not compile because of an abstract method shadowing a concrete method, pending update upstream
1040
- -- " HashSetTest.scala"
1041
- -- " LinkedHashSetTest.scala"
1042
1028
)).get
1043
1029
1044
1030
++ (dir / " shared/src/test/require-sam" ** " *.scala" ).get
1045
1031
++ (dir / " shared/src/test/require-jdk8" ** " *.scala" ).get
1046
1032
++ (dir / " shared/src/test/require-jdk7" ** " *.scala" ).get
1047
1033
1048
1034
++ (dir / " js/src/test/scala/org/scalajs/testsuite/compiler" ** ((" *.scala" : FileFilter )
1049
- -- " InteroperabilityTest.scala" // various compile errors, pending update upstream
1050
- -- " OptimizerTest.scala" // compile errors: false + string and () + string, pending update upstream
1035
+ -- " InteroperabilityTest.scala" // compiler crash, related to value classes in JS interop
1036
+ -- " OptimizerTest.scala" // non-native JS classes
1051
1037
-- " ReflectionTest.scala" // tests fail (wrong load spec for JS globals)
1052
1038
-- " RegressionJSTest.scala" // non-native JS classes
1053
1039
-- " RuntimeTypesTest.scala" // compile errors: no ClassTag for Null and Nothing
@@ -1083,7 +1069,7 @@ object Build {
1083
1069
)).get
1084
1070
1085
1071
++ (dir / " js/src/test/scala/org/scalajs/testsuite/library" ** ((" *.scala" : FileFilter )
1086
- -- " BigIntTest.scala" // Ambiguous reference because of new non-shadowing rule in Scala 3, pending update upstream
1072
+ -- " BigIntTest.scala" // non-native JS classes
1087
1073
-- " ObjectTest.scala" // compile errors caused by #9588
1088
1074
-- " StackTraceTest.scala" // would require `npm install source-map-support`
1089
1075
-- " UnionTypeTest.scala" // requires a Scala 2 macro
0 commit comments