From cc60664621faca2eca921d5ee4d66c145b9b98a3 Mon Sep 17 00:00:00 2001 From: Jamie Thompson Date: Thu, 12 Jan 2023 14:34:39 +0100 Subject: [PATCH] ignore problematic scala.js sources --- project/Build.scala | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/project/Build.scala b/project/Build.scala index 0a3504c865c5..76f5a52cffee 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -1466,6 +1466,8 @@ object Build { ( (dir / "shared/src/test/scala" ** (("*.scala": FileFilter) -- "ReflectiveCallTest.scala" // uses many forms of structural calls that are not allowed in Scala 3 anymore + -- "ArrayTest.scala" // refutable pattern match + -- "UTF16Test.scala" // refutable pattern match )).get ++ (dir / "shared/src/test/require-sam" ** "*.scala").get @@ -1475,6 +1477,8 @@ object Build { ++ (dir / "js/src/test/scala" ** (("*.scala": FileFilter) -- "StackTraceTest.scala" // would require `npm install source-map-support` -- "UnionTypeTest.scala" // requires the Scala 2 macro defined in Typechecking*.scala + -- "ObjectTest.scala" // refutable pattern match + -- "TupleTest.scala" // refutable pattern match )).get ++ (dir / "js/src/test/require-2.12" ** "*.scala").get