Skip to content
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

chore: improve code readability and style in regressions.py and splitSources.py #15959

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions scripts/regressions.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ def __init__(self, interval=300):
thread.start()

def run(self):
""" Runs until the main Python thread exits. """
## Print a newline at the very beginning.
""" Run indefinitely until the main Python thread exits. """
## Print an initial newline at the very beginning.
print("")
while True:
# Print dot
print(".")
time.sleep(self.interval)

class regressor:
class Regressor:
_re_sanitizer_log = re.compile(r"""ERROR: (libFuzzer|UndefinedBehaviorSanitizer)""")

def __init__(self, description, args):
Expand Down Expand Up @@ -87,7 +87,7 @@ def process_log(self, logfile):
False -> Failure
"""

## Log may contain non ASCII characters, so we simply stringify them
## Log may contain non-ASCII characters, so we simply stringify them
## since they don't matter for regular expression matching
with open(logfile, 'rb', encoding=None) as f:
rawtext = str(f.read())
Expand Down Expand Up @@ -122,5 +122,5 @@ def run(self):

if __name__ == '__main__':
dotprinter = PrintDotsThread()
tool = regressor(DESCRIPTION, sys.argv[1:])
tool = Regressor(DESCRIPTION, sys.argv[1:])
sys.exit(not tool.run())
6 changes: 3 additions & 3 deletions scripts/splitSources.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
#
# This script reads a syntaxTest file and writes all
# sources into their own files. If one source-name specifies subdirectories
# sources into separate files. If a source name specifies subdirectories,
# those will be created too.

# Usage: scripts/splitSources.py pathToTestfile
Expand All @@ -18,7 +18,7 @@ def uncaught_exception_hook(exc_type, exc_value, exc_traceback):
# The script `scripts/ASTImportTest.sh` will interpret return code 3
# as a critical error (because of the uncaught exception) and will
# terminate further execution.
print("Unhandled exception: %s", "".join(traceback.format_exception(exc_type, exc_value, exc_traceback)))
print("Unhandled exception:" + "".join(traceback.format_exception(exc_type, exc_value, exc_traceback)))
sys.exit(3)


Expand All @@ -42,7 +42,7 @@ def writeSourceToFile(lines):
with open(srcName, mode='a+', encoding='utf8', newline='') as f:
for idx, line in enumerate(lines[1:]):
# write to file
if line[:12] != "==== Source:":
if not line.startswith("==== Source:"):
f.write(line + '\n')

# recursive call if there is another source
Expand Down