Skip to content

Commit 6733c1b

Browse files
RagnarGrootKoerkampmzuenni
authored andcommitted
Review fixes/comments
1 parent fbcac98 commit 6733c1b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

bin/fuzz.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ def runner(task: GeneratorTask | SubmissionTask) -> None:
283283
],
284284
)
285285
max_len += len(f"{self.tmp_ids}: ")
286-
# we use a PrintBar after an aboard
286+
# we use a PrintBar after an abort
287287
printbar = PrintBar("Fuzz", max_len=max_len)
288288
printbar.log("Press CTRL+C to stop\n")
289289
bar = FuzzProgressBar(self.queue, "Fuzz", max_len=max_len)

bin/testcase.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -417,8 +417,9 @@ def _run_validators(
417417
else:
418418
if ExecStatus.TIMEOUT in results:
419419
issues.append("Validator timed out.")
420-
if output_validator_crash:
421-
issues.append("Output Validator crashed.")
420+
# Output validators should _never_ crash, so this should not be inside the 'else'?
421+
if output_validator_crash:
422+
issues.append("Output Validator crashed.")
422423

423424
success = not issues
424425
if not success:

bin/tools.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1089,6 +1089,7 @@ def read_personal_config(problem_dir: Optional[Path]) -> None:
10891089
continue
10901090
if not isinstance(config_data, dict):
10911091
warn(f"invalid data in {config_data}. SKIPPED.")
1092+
continue
10921093

10931094
tmp = config.ARGS(config_file, **config_data)
10941095
config.args.update(tmp)

0 commit comments

Comments
 (0)