Skip to content

Commit

Permalink
Fix includes of StrictNullChecks
Browse files Browse the repository at this point in the history
  • Loading branch information
k163377 committed Apr 14, 2024
1 parent f7698bc commit 4a5e530
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,10 @@ fun BenchmarkSet.includes(): List<String> = when (this) {
BenchmarkSet.WrapperSer -> listOf("org.wrongwrong.extra.ser.wrapper.*")
BenchmarkSet.WrapperDeser -> listOf("org.wrongwrong.extra.deser.wrapper.*")
// missing is excluded from the comparison because they are theoretically less affected by StrictNullChecks
// JMH plugin has been updated from 0.5.3, and now it is combined into one regular expression,
// because it caused an error when multiple expressions were specified.
BenchmarkSet.StrictNullChecks ->
listOf("org.wrongwrong.extra.deser.Collections", "org.wrongwrong.main.deser.*_Ctor.present")
listOf("org.wrongwrong.extra.deser.Collections|org.wrongwrong.main.deser.*_Ctor.present")
BenchmarkSet.OnlyMain -> listOf("org.wrongwrong.main.*")
BenchmarkSet.Full -> listOf("org.wrongwrong.*")
}
Expand Down

0 comments on commit 4a5e530

Please sign in to comment.