diff options
| -rw-r--r-- | meta/lib/oeqa/selftest/cases/glibc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/glibc.py b/meta/lib/oeqa/selftest/cases/glibc.py index c687f6ef93..cf8c92887b 100644 --- a/meta/lib/oeqa/selftest/cases/glibc.py +++ b/meta/lib/oeqa/selftest/cases/glibc.py | |||
| @@ -33,7 +33,7 @@ class GlibcSelfTestBase(OESelftestTestCase, OEPTestResultTestCase): | |||
| 33 | 33 | ||
| 34 | ptestsuite = "glibc-user" if ssh is None else "glibc" | 34 | ptestsuite = "glibc-user" if ssh is None else "glibc" |
| 35 | self.ptest_section(ptestsuite) | 35 | self.ptest_section(ptestsuite) |
| 36 | with open(os.path.join(builddir, "tests.sum"), "r") as f: | 36 | with open(os.path.join(builddir, "tests.sum"), "r", errors='replace') as f: |
| 37 | for test, result in parse_values(f): | 37 | for test, result in parse_values(f): |
| 38 | self.ptest_result(ptestsuite, test, result) | 38 | self.ptest_result(ptestsuite, test, result) |
| 39 | 39 | ||
