Skip to content

Commit

Permalink
disable regex tests for llvm and chez
Browse files Browse the repository at this point in the history
  • Loading branch information
leonfuss committed Nov 6, 2024
1 parent 41e208c commit c6997f0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion effekt/jvm/src/test/scala/effekt/StdlibTests.scala
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ abstract class StdlibChezTests extends StdlibTests {
override def ignored: List[File] = List(
// Not implemented yet
examplesDir / "stdlib" / "bytearray",
examplesDir / "stdlib" / "io"
examplesDir / "stdlib" / "io",

// Not implemented: advanced regex features
examplesDir / "stdlib" / "string" / "regex.effekt"
)
}
class StdlibChezSchemeMonadicTests extends StdlibChezTests {
Expand Down Expand Up @@ -60,5 +63,8 @@ class StdlibLLVMTests extends StdlibTests {
examplesDir / "stdlib" / "list" / "build.effekt",
examplesDir / "stdlib" / "string" / "strings.effekt",
examplesDir / "stdlib" / "string" / "unicode.effekt",

// Not implemented: advanced regex features
examplesDir / "stdlib" / "string" / "regex.effekt"
)
}

0 comments on commit c6997f0

Please sign in to comment.