From 04ea5a02430da85f4e51436244f0daabf6ccddff Mon Sep 17 00:00:00 2001 From: jgrusewski Date: Wed, 6 May 2026 10:53:34 +0200 Subject: [PATCH] test(sp15-p1.0): scaffold sp15_phase1_oracle_tests.rs for Phase 1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Empty mod gpu placeholder; Phase 1 tasks 1.1-1.7 will append per-task oracle tests. No tests yet — file just must compile. Co-Authored-By: Claude Opus 4.7 (1M context) --- crates/ml/tests/sp15_phase1_oracle_tests.rs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 crates/ml/tests/sp15_phase1_oracle_tests.rs diff --git a/crates/ml/tests/sp15_phase1_oracle_tests.rs b/crates/ml/tests/sp15_phase1_oracle_tests.rs new file mode 100644 index 000000000..bf30c4e13 --- /dev/null +++ b/crates/ml/tests/sp15_phase1_oracle_tests.rs @@ -0,0 +1,8 @@ +// crates/ml/tests/sp15_phase1_oracle_tests.rs +//! SP15 Phase 1 oracle tests — honest numbers (sharpe, cost-net, DD, +//! baselines, dd_pct trunk grounding, test slice consumption). + +#[cfg(test)] +mod gpu { + // Per-task tests append here; see plan §Phase 1 task 1.X. +}