File tree Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Expand file tree Collapse file tree 2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -456,6 +456,14 @@ def check_oracle_mul(dirname, oracles):
456
456
except KeyboardInterrupt :
457
457
STOP_COND = True
458
458
return {}
459
+ except Exception as exc :
460
+ if cli_args .print_stacktrace :
461
+ err = str (traceback .format_exc ())
462
+ else :
463
+ err = str (exc )
464
+ print ('Internal error while checking the oracle' )
465
+ print (err )
466
+ return {}
459
467
460
468
461
469
def _run (process_program , process_res ):
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ def analyze_compiler_output(self, output):
35
35
error_msg = self .get_error_msg (match )
36
36
failed [filename ].append (error_msg )
37
37
38
- crash_match = re .search (self .CRASH_REGEX , filtered_output )
38
+ crash_match = re .search (self .CRASH_REGEX , output )
39
39
if crash_match and not matches :
40
40
self .crash_msg = output
41
41
return None , matches
You can’t perform that action at this time.
0 commit comments