Account for every uncovered line in the implementation
All checks were successful
Tests / Clang total: 1162, passed: 1162
Clang |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |0|0|0|0|:clap:
Tests / SIMD fallback total: 1162, passed: 1162
Tests / Release [gcc] total: 1162, passed: 1162
GNU C Compiler (gcc) |Total|New|Outstanding|Fixed|Trend |:-:|:-:|:-:|:-:|:-: |0|0|0|0|:clap:
Tests / Release [gcc,aarch64] total: 868, passed: 868
Tests / Coverage total: 872, passed: 872
weaselab/conflict-set/pipeline/head This commit looks good

Closes #23
This commit is contained in:
2024-04-18 12:27:20 -07:00
parent bf91bca16d
commit d2e1863593
2 changed files with 13 additions and 1 deletions

View File

@@ -92,6 +92,14 @@ def test_large():
)
def test_merge_child_node48():
with DebugConflictSet() as cs:
cs.addWrites(1, write(b"\x00" * 9))
for i in range(17):
cs.addWrites(1, write(b"\x00" * 10 + bytes([i])))
cs.addWrites(1, write(b"\x00" * 8, b"\x00" * 10))
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