Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions tests/test_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,7 @@
def test_analyzer_common():
"""
Test the trace analyzer functionality.
Note: This test is currently skipped due to a known segmentation fault issue
that occurs when analyzing traces with very few unique objects (< 200).
The issue appears to be in the C++ analyzer core, specifically in the
post_processing phase where bounds checking may not be sufficient.
TODO: Fix the underlying C++ segfault issue in the analyzer.
"""
pytest.skip("Skipping due to known segfault with small datasets. See issue documentation.")

# Add debugging and error handling
loader = DataLoader()
Expand Down Expand Up @@ -57,5 +49,3 @@ def test_analyzer_common():
stat_file = "stat"
if os.path.exists(stat_file):
os.remove(stat_file)

analyzer.cleanup()
Loading