diff options
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/binutils.py')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/binutils.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/meta/lib/oeqa/selftest/cases/binutils.py b/meta/lib/oeqa/selftest/cases/binutils.py index 4edee09390..7f887959e4 100644 --- a/meta/lib/oeqa/selftest/cases/binutils.py +++ b/meta/lib/oeqa/selftest/cases/binutils.py | |||
@@ -52,13 +52,7 @@ class BinutilsCrossSelfTest(OESelftestTestCase): | |||
52 | if not os.path.exists(sumspath): | 52 | if not os.path.exists(sumspath): |
53 | sumspath = os.path.join(builddir, suite, "testsuite", "{0}.sum".format(suite)) | 53 | sumspath = os.path.join(builddir, suite, "testsuite", "{0}.sum".format(suite)) |
54 | 54 | ||
55 | failed = 0 | ||
56 | with open(sumspath, "r") as f: | 55 | with open(sumspath, "r") as f: |
57 | for test, result in parse_values(f): | 56 | for test, result in parse_values(f): |
58 | self.tc.extraresults["ptestresult.{}.{}".format(ptestsuite, test)] = {"status" : result} | 57 | self.tc.extraresults["ptestresult.{}.{}".format(ptestsuite, test)] = {"status" : result} |
59 | if result == "FAIL": | ||
60 | self.logger.info("failed: '{}'".format(test)) | ||
61 | failed += 1 | ||
62 | |||
63 | self.assertEqual(failed, 0) | ||
64 | 58 | ||