From 91082b00aac50fc5a0c577cded6e7341262ebc47 Mon Sep 17 00:00:00 2001 From: Mika Date: Thu, 22 Jan 2026 11:58:39 +0000 Subject: [PATCH] Add sanity_check_tool/tests/data/sample_run_summary.json --- .../tests/data/sample_run_summary.json | 40 +++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 sanity_check_tool/tests/data/sample_run_summary.json diff --git a/sanity_check_tool/tests/data/sample_run_summary.json b/sanity_check_tool/tests/data/sample_run_summary.json new file mode 100644 index 0000000..4e5d80f --- /dev/null +++ b/sanity_check_tool/tests/data/sample_run_summary.json @@ -0,0 +1,40 @@ +{ + "run_id": "example_001", + "kernel_events": [ + { + "event": "write_pre", + "corr_id": 101, + "timestamp": 1701000000, + "field_a": "alpha" + }, + { + "event": "write_post", + "corr_id": 101, + "timestamp": 1701000001, + "field_a": "alpha" + }, + { + "event": "write_pre", + "corr_id": 102, + "timestamp": 1701000002, + "field_a": "beta" + }, + { + "event": "read", + "corr_id": 102, + "timestamp": 1701000003, + "field_a": "beta" + }, + { + "event": "write_pre", + "corr_id": 103, + "timestamp": 1701000004, + "field_a": null + } + ], + "metadata": { + "source": "kernel_trace_collector", + "version": "1.0", + "created_at": "2024-05-15T10:00:00Z" + } +} \ No newline at end of file