Vendor paguro's RrbTree, fix an int overflow breaking large Lists (#1337)

This commit is contained in:
Jen Basch
2025-12-03 09:02:17 -08:00
committed by GitHub
parent 6c3683c55e
commit d1c652f736
8 changed files with 1983 additions and 11 deletions
+6
View File
@@ -120,6 +120,9 @@ tasks.test {
excludeEngines("AlpineLanguageSnippetTestsEngine")
excludeEngines("WindowsLanguageSnippetTestsEngine")
}
// testing very large lists requires more memory than the default 512m!
maxHeapSize = "1g"
}
val testJavaExecutable by
@@ -135,6 +138,9 @@ val testJavaExecutable by
// executable;
// to verify that we don't want to include them here)
(configurations.testRuntimeClasspath.get() - configurations.runtimeClasspath.get())
// testing very large lists requires more memory than the default 512m!
maxHeapSize = "1g"
}
tasks.check { dependsOn(testJavaExecutable) }