We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82d0972 commit af3db28Copy full SHA for af3db28
src/tasks/scenarios/submission.ts
@@ -66,7 +66,7 @@ class SubmissionScenario extends Scenario {
66
const expectedOutputFile = path.join(currentTestcasePath, 'stdout')
67
68
const diff = exec(`
69
- diff -b -B -a --suppress-common-lines --speed-large-files ${runOutputFile} ${expectedOutputFile}
+ diff -b -B -a -q ${runOutputFile} ${expectedOutputFile}
70
`)
71
const score = diff.code === 0 ? 100 : 0
72
0 commit comments