Remove diff output from test runner - only report file differences

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Mario Zechner 2025-07-21 12:11:15 +02:00
parent fb821ec443
commit ce1fec0cb0

View File

@ -571,16 +571,6 @@ function verifyOutputsMatch(): void {
if (javaContent !== cppContent) { if (javaContent !== cppContent) {
allMatch = false; allMatch = false;
console.error(`\n❌ Files differ: ${javaFile} vs ${cppFile}`); console.error(`\n❌ Files differ: ${javaFile} vs ${cppFile}`);
// Show diff using system diff command
try {
execSync(`diff "${join(outputDir, javaFile)}" "${join(outputDir, cppFile)}"`, {
stdio: 'inherit',
cwd: outputDir
});
} catch {
// diff exits with code 1 when files differ, which is expected
}
} }
} catch (error: any) { } catch (error: any) {
allMatch = false; allMatch = false;