Record Frontier trace stalls without ranking them

This commit is contained in:
2026-07-17 12:46:57 +08:00
parent 03aa794448
commit 903cbe682d
2 changed files with 90 additions and 6 deletions

View File

@@ -106,6 +106,16 @@ class FidelityEnvelopeTest(unittest.TestCase):
def test_exact_trace_parser_and_joint_slo_score(self) -> None:
module = load("run_frontier_qwen30_exact_trace_surface.py")
self.assertEqual(
module.classify_frontier_failure(
"Sequential simulation ended with non-empty scheduler state"
),
"scheduler_stall",
)
self.assertEqual(
module.classify_frontier_failure("unexpected failure"),
"frontier_error",
)
with tempfile.TemporaryDirectory() as temporary:
root = Path(temporary)
trace = root / "trace.csv"