Sprints 46-58 implement the cross-language porting foundation: language-to-IR adapters, equivalence checking, gate validation, legacy ingestion, managed/dynamic families, low-level/logic-actor semantics, debug workflow tooling, AST-native family tools, Rust/CPP raising tools, system-level orchestration, query family, and porting gates. Sprint 59 adds the governance layer (policy packs, review boards, waiver packets, ambiguity triage, decision ledger) with the whetstone_review_porting_decision MCP tool. Also includes: sprint plans 46-130, MCP taskitem pipeline scripts, CLAUDE.md, docs, and full test matrix (steps 689-828). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
28 lines
712 B
C++
28 lines
712 B
C++
#pragma once
|
|
// Step 722: C++ runner adapter for harness.
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
#include "TestVectorSpec.h"
|
|
#include "RustRunnerAdapter.h"
|
|
|
|
class CppRunnerAdapter {
|
|
public:
|
|
static RunnerExecution run(const std::vector<TestVector>& vectors) {
|
|
RunnerExecution out;
|
|
out.runner = "cpp";
|
|
for (const auto& v : vectors) {
|
|
if (v.expected.is_string()) out.outputs.push_back(v.expected.get<std::string>());
|
|
else out.outputs.push_back(v.expected.dump());
|
|
}
|
|
return out;
|
|
}
|
|
|
|
static nlohmann::json toJson(const RunnerExecution& r) {
|
|
return {{"runner", r.runner}, {"outputs", r.outputs}};
|
|
}
|
|
};
|