Add sanity_check_tool/tests/data/example_run_data.json

This commit is contained in:
Mika 2026-01-23 12:53:28 +00:00
parent 5f3c92a2cc
commit 8e32cd66ff

View file

@ -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"
]
}