Exercise freelist size limiting code
All checks were successful
Tests / Clang total: 1093, passed: 1093
Clang |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |0|0|0|0|:clap:
Tests / SIMD fallback total: 1093, passed: 1093
Tests / Release [gcc] total: 1093, passed: 1093
GNU C Compiler (gcc) |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |0|0|0|0|:clap:
Tests / Release [gcc,aarch64] total: 817, passed: 817
Tests / Coverage total: 820, passed: 820
weaselab/conflict-set/pipeline/head This commit looks good

This commit is contained in:
2024-04-17 18:27:01 -07:00
parent c15d296432
commit 76a45f16ad

View File

@@ -81,6 +81,17 @@ def test_decrease_capacity():
cs.setOldestVersion(1)
def test_large():
with DebugConflictSet() as cs:
end = 100000
for i in range(end):
cs.addWrites(1, write(i.to_bytes(8, byteorder="big")))
cs.addWrites(
2,
write((0).to_bytes(8, byteorder="big"), (end).to_bytes(8, byteorder="big")),
)
if __name__ == "__main__":
# budget "pytest" for ctest integration without pulling in a dependency. You can of course still use pytest in local development.
import argparse