Skip to content

Fix ClassDef Name binding #101

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Aug 31, 2024
Merged
Prev Previous commit
Next Next commit
Log assertion errors from corpus
  • Loading branch information
dflook committed Aug 30, 2024
commit 0b71b70097f48f4e1fd31ee9a552b4431c660819
4 changes: 3 additions & 1 deletion corpus_test/generate_results.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import argparse
import datetime
import gzip
import os
import sys
Expand Down Expand Up @@ -63,6 +62,9 @@ def minify_corpus_entry(corpus_path, corpus_entry):
result.time = end_time - start_time
result.outcome = 'UnstableMinification'

except AssertionError as assertion_error:
result.outcome = 'Exception: AssertionError'

except Exception as exception:
result.outcome = 'Exception: ' + str(exception)

Expand Down
Loading