From 8e32cd66ff0953e632eb6b2ee1c989bd6bf824a7 Mon Sep 17 00:00:00 2001 From: Mika Date: Fri, 23 Jan 2026 12:53:28 +0000 Subject: [PATCH] Add sanity_check_tool/tests/data/example_run_data.json --- .../tests/data/example_run_data.json | 48 +++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 sanity_check_tool/tests/data/example_run_data.json diff --git a/sanity_check_tool/tests/data/example_run_data.json b/sanity_check_tool/tests/data/example_run_data.json new file mode 100644 index 0000000..0ee4226 --- /dev/null +++ b/sanity_check_tool/tests/data/example_run_data.json @@ -0,0 +1,48 @@ +{ + "runs": [ + { + "id": 1, + "corr_id": "abc123", + "event": "write_pre", + "timestamp": 1000, + "clocksource": "tsc", + "metadata": { + "value": 42 + } + }, + { + "id": 2, + "corr_id": "abc123", + "event": "write_post", + "timestamp": 1010, + "clocksource": "tsc", + "metadata": { + "value": 42 + } + }, + { + "id": 3, + "corr_id": "xyz456", + "event": "write_pre", + "timestamp": 2000, + "clocksource": "tsc", + "metadata": { + "value": null + } + }, + { + "id": 4, + "corr_id": "", + "event": "write_post", + "timestamp": 2010, + "clocksource": "switch", + "metadata": {} + } + ], + "sanity_checks": [ + "missing_pairs", + "broken_ids", + "empty_fields", + "clock_switch_count" + ] +} \ No newline at end of file