diff options
| -rwxr-xr-x | meta/recipes-kernel/perf/perf/sort-pmuevents.py | 8 | ||||
| -rwxr-xr-x | meta/recipes-rt/rt-tests/files/rt_bmark.py | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/meta/recipes-kernel/perf/perf/sort-pmuevents.py b/meta/recipes-kernel/perf/perf/sort-pmuevents.py index 0362f2d8fa..0a87e553ab 100755 --- a/meta/recipes-kernel/perf/perf/sort-pmuevents.py +++ b/meta/recipes-kernel/perf/perf/sort-pmuevents.py | |||
| @@ -36,10 +36,10 @@ with open(infile, 'r') as file: | |||
| 36 | preamble_regex = re.compile( '^(.*?)^(struct|const struct|static struct|static const struct)', re.MULTILINE | re.DOTALL ) | 36 | preamble_regex = re.compile( '^(.*?)^(struct|const struct|static struct|static const struct)', re.MULTILINE | re.DOTALL ) |
| 37 | 37 | ||
| 38 | preamble = re.search( preamble_regex, data ) | 38 | preamble = re.search( preamble_regex, data ) |
| 39 | struct_block_regex = re.compile( '^(struct|const struct|static struct|static const struct).*?(\w+) (.*?)\[\] = {(.*?)^};', re.MULTILINE | re.DOTALL ) | 39 | struct_block_regex = re.compile(r'^(struct|const struct|static struct|static const struct).*?(\w+) (.*?)\[\] = {(.*?)^};', re.MULTILINE | re.DOTALL ) |
| 40 | field_regex = re.compile( '{.*?},', re.MULTILINE | re.DOTALL ) | 40 | field_regex = re.compile(r'{.*?},', re.MULTILINE | re.DOTALL ) |
| 41 | cpuid_regex = re.compile( '\.cpuid = (.*?),', re.MULTILINE | re.DOTALL ) | 41 | cpuid_regex = re.compile(r'\.cpuid = (.*?),', re.MULTILINE | re.DOTALL ) |
| 42 | name_regex = re.compile( '\.name = (.*?),', re.MULTILINE | re.DOTALL ) | 42 | name_regex = re.compile(r'\.name = (.*?),', re.MULTILINE | re.DOTALL ) |
| 43 | 43 | ||
| 44 | # create a dictionary structure to store all the structs, their | 44 | # create a dictionary structure to store all the structs, their |
| 45 | # types and then their fields. | 45 | # types and then their fields. |
diff --git a/meta/recipes-rt/rt-tests/files/rt_bmark.py b/meta/recipes-rt/rt-tests/files/rt_bmark.py index 3b84447a0f..2a4eed412f 100755 --- a/meta/recipes-rt/rt-tests/files/rt_bmark.py +++ b/meta/recipes-rt/rt-tests/files/rt_bmark.py | |||
| @@ -265,7 +265,7 @@ cmd = ("cyclictest", | |||
| 265 | "-d", str(interval_delta), | 265 | "-d", str(interval_delta), |
| 266 | "-l", str(loop_count) | 266 | "-l", str(loop_count) |
| 267 | ) | 267 | ) |
| 268 | rex = re.compile(b"C:\s*(\d+).*Min:\s*(\d+).*Avg:\s*(\d+).*Max:\s*(\d+)") | 268 | rex = re.compile(r"C:\s*(\d+).*Min:\s*(\d+).*Avg:\s*(\d+).*Max:\s*(\d+)") |
| 269 | 269 | ||
| 270 | def run_cyclictest_once(): | 270 | def run_cyclictest_once(): |
| 271 | res = subprocess.check_output(cmd) | 271 | res = subprocess.check_output(cmd) |
