Skip to content

Commit

Permalink
exclude some files from self-test refs #3
Browse files Browse the repository at this point in the history
  • Loading branch information
drieks committed Oct 21, 2019
1 parent 19aa8cd commit 6ea4fbc
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion kotlin/src/jvmTest/kotlin/kotlinx/ast/kotlin/SelfTest.kt
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
package kotlinx.ast.kotlin

class SelfTest : DirectoryTest(pathOf(".").pathMap())
class SelfTest : DirectoryTest(pathOf(".").pathMap().filterNot { (file, _) ->
// skip this files: currently too slow..
setOf(
"KotlinLexer.kt",
"KotlinParser.kt",
"UnicodeClasses.kt"
).contains(file.name)
})

0 comments on commit 6ea4fbc

Please sign in to comment.