diff options
| -rwxr-xr-x | meta/recipes-rt/rt-tests/files/rt_bmark.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-rt/rt-tests/files/rt_bmark.py b/meta/recipes-rt/rt-tests/files/rt_bmark.py index 2a4eed412f..5d22623656 100755 --- a/meta/recipes-rt/rt-tests/files/rt_bmark.py +++ b/meta/recipes-rt/rt-tests/files/rt_bmark.py | |||
| @@ -284,7 +284,7 @@ def run_cyclictest_once(): | |||
| 284 | avg_cnt = 0 | 284 | avg_cnt = 0 |
| 285 | 285 | ||
| 286 | for line in res.splitlines(): | 286 | for line in res.splitlines(): |
| 287 | m = rex.search(line) | 287 | m = rex.search(line.decode('utf-8')) |
| 288 | if m is not None: | 288 | if m is not None: |
| 289 | minlist.append(int(m.group(2))) | 289 | minlist.append(int(m.group(2))) |
| 290 | maxlist.append(int(m.group(4))) | 290 | maxlist.append(int(m.group(4))) |
