File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed
Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments