From 7fb408b46648f6dbb56941122283ba047ac85340 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Tue, 15 Oct 2024 17:47:36 -0700 Subject: [PATCH] Remove tailcall test We no longer rely on tail call optimization happening where musttail is not supported --- test_conflict_set.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/test_conflict_set.py b/test_conflict_set.py index 468271b..c18f83b 100644 --- a/test_conflict_set.py +++ b/test_conflict_set.py @@ -164,12 +164,6 @@ def test_fixup_256(): cs.check(read(0, bytes([1]), bytes([2]))) -def test_tailcall(): - with DebugConflictSet() as cs: - cs.addWrites(0, write(bytes([1]))) - cs.check(*[read(0, bytes([1])) for _ in range(100000)]) - - 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