Skip to content

Commit af3db28

Browse files
committed
fix: out of memory issue
1 parent 82d0972 commit af3db28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tasks/scenarios/submission.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class SubmissionScenario extends Scenario {
6666
const expectedOutputFile = path.join(currentTestcasePath, 'stdout')
6767

6868
const diff = exec(`
69-
diff -b -B -a --suppress-common-lines --speed-large-files ${runOutputFile} ${expectedOutputFile}
69+
diff -b -B -a -q ${runOutputFile} ${expectedOutputFile}
7070
`)
7171
const score = diff.code === 0 ? 100 : 0
7272

0 commit comments

Comments
 (0)