Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
Xyene committed Dec 25, 2023
1 parent de67298 commit 299dc5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions dmoj/graders/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ def __init__(self, judge, problem, language, source):
self.binary = self._generate_binary()
self.run_pretests_only = self.problem.meta.pretests_only
self._abort_requested = False
self._current_proc = None
self._batch_counter = 0
self._testcase_counter = 0

Expand Down
2 changes: 1 addition & 1 deletion dmoj/graders/standard.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def check_result(self, case, result):
return check

def _launch_process(self, case):
self.binary.launch(
self._current_proc = self.binary.launch(
time=self.problem.time_limit,
memory=self.problem.memory_limit,
symlinks=case.config.symlinks,
Expand Down

0 comments on commit 299dc5b

Please sign in to comment.