File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -1019,8 +1019,7 @@ object Build {
1019
1019
val dir = fetchScalaJSSource.value / " test-suite/js/src/main/scala"
1020
1020
val filter = (
1021
1021
(" *.scala" : FileFilter )
1022
- -- " Typechecking*.scala"
1023
- -- " NonNativeTypeTestSeparateRun.scala"
1022
+ -- " Typechecking*.scala" // defines a Scala 2 macro
1024
1023
)
1025
1024
(dir ** filter).get
1026
1025
},
@@ -1051,7 +1050,7 @@ object Build {
1051
1050
-- " DynamicTest.scala" // one test requires JS exports, all other tests pass
1052
1051
-- " ExportsTest.scala" // JS exports
1053
1052
-- " 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 )
1055
1054
)).get
1056
1055
1057
1056
++ (dir / " js/src/test/scala/org/scalajs/testsuite/junit" ** ((" *.scala" : FileFilter )
@@ -1065,7 +1064,7 @@ object Build {
1065
1064
++ (dir / " js/src/test/scala/org/scalajs/testsuite/library" ** ((" *.scala" : FileFilter )
1066
1065
-- " ObjectTest.scala" // compile errors caused by #9588
1067
1066
-- " 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
1069
1068
)).get
1070
1069
1071
1070
++ (dir / " js/src/test/scala/org/scalajs/testsuite/niobuffer" ** " *.scala" ).get
You can’t perform that action at this time.
0 commit comments