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

Typo in docs section "Debugging sanity and performance patterns" #3045

Closed
vkarak opened this issue Nov 14, 2023 · 0 comments · Fixed by #3051
Closed

Typo in docs section "Debugging sanity and performance patterns" #3045

vkarak opened this issue Nov 14, 2023 · 0 comments · Fixed by #3051

Comments

@vkarak
Copy link
Contributor

vkarak commented Nov 14, 2023

In the following code snippet

import re

# Read the test's output
with open(the_output_file, 'r') as f:
    test_output = ''.join(f.readlines())

# Evaluate the regular expression
re.find(the_regex_pattern, test_output)

re.find must be replaced with re.findall and re.MULTILINE should also be used.

CC: @flx42

@vkarak vkarak added this to the ReFrame 4.5 milestone Nov 14, 2023
@vkarak vkarak moved this to Todo in ReFrame Backlog Nov 15, 2023
@vkarak vkarak self-assigned this Nov 21, 2023
@vkarak vkarak moved this from Todo to In Progress in ReFrame Backlog Nov 21, 2023
@vkarak vkarak linked a pull request Nov 22, 2023 that will close this issue
@vkarak vkarak moved this from In Progress to Merge To Develop in ReFrame Backlog Nov 22, 2023
@vkarak vkarak closed this as completed Dec 7, 2023
@github-project-automation github-project-automation bot moved this from Merge To Develop to Done in ReFrame Backlog Dec 7, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
Status: Done
Development

Successfully merging a pull request may close this issue.

1 participant