output incorrect jobs in benchmarks

This commit is contained in:
Ruben Fiszel
2025-02-17 22:20:33 +01:00
committed by Guilhem
parent 9e999106f0
commit ee0ef7d8b0

View File

@@ -26,7 +26,7 @@ async function verifyOutputs(uuids: string[], workspace: string) {
incorrectResults++;
}
if (job.result !== uuid) {
console.log(`Job ${uuid} did not output the correct value: ${JSON.stringify(job.result)}`);
console.log(`Job ${uuid} did not output the correct value: ${JSON.stringify(job)}`);
incorrectResults++;
}
} catch (_) {