Skip to content

Commit 9f9df05

Browse files
committed
Refine the blacklist of tests.
1 parent f140144 commit 9f9df05

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

project/Build.scala

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1019,8 +1019,7 @@ object Build {
10191019
val dir = fetchScalaJSSource.value / "test-suite/js/src/main/scala"
10201020
val filter = (
10211021
("*.scala": FileFilter)
1022-
-- "Typechecking*.scala"
1023-
-- "NonNativeTypeTestSeparateRun.scala"
1022+
-- "Typechecking*.scala" // defines a Scala 2 macro
10241023
)
10251024
(dir ** filter).get
10261025
},
@@ -1051,7 +1050,7 @@ object Build {
10511050
-- "DynamicTest.scala" // one test requires JS exports, all other tests pass
10521051
-- "ExportsTest.scala" // JS exports
10531052
-- "JSExportStaticTest.scala" // JS exports
1054-
-- "NonNativeJSTypeTest.scala" // compiler crash (non-native JS classes)
1053+
-- "NonNativeJSTypeTest.scala" // 3 tests fail (2 because of anonymous JS class no-own-prototype; 1 because of a progression for value class fields)
10551054
)).get
10561055

10571056
++ (dir / "js/src/test/scala/org/scalajs/testsuite/junit" ** (("*.scala": FileFilter)
@@ -1065,7 +1064,7 @@ object Build {
10651064
++ (dir / "js/src/test/scala/org/scalajs/testsuite/library" ** (("*.scala": FileFilter)
10661065
-- "ObjectTest.scala" // compile errors caused by #9588
10671066
-- "StackTraceTest.scala" // would require `npm install source-map-support`
1068-
-- "UnionTypeTest.scala" // requires a Scala 2 macro
1067+
-- "UnionTypeTest.scala" // requires the Scala 2 macro defined in Typechecking*.scala
10691068
)).get
10701069

10711070
++ (dir / "js/src/test/scala/org/scalajs/testsuite/niobuffer" ** "*.scala").get

0 commit comments

Comments
 (0)