summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/gcc.py
diff options
context:
space:
mode:
authorNathan Rossi <nathan@nathanrossi.com>2019-09-04 14:23:23 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-09-07 21:56:43 +0100
commit219c199d347a965d3abe486fc13f41d91df7c751 (patch)
tree290b54bbfbb9753ed89ddb3b4b735b3771b66f00 /meta/lib/oeqa/selftest/cases/gcc.py
parent2b67b9dfad46f39c101c28b567522ccbdbec71fd (diff)
downloadpoky-219c199d347a965d3abe486fc13f41d91df7c751.tar.gz
oeqa/selftest: For toolchain tests do not fail if a test failed
Do not fail the running selftest test case if the test suite has a failed test case. Currently toolchain tests suites (binutils, gcc, glibc) fail but this does not indicate failure to execute the tests. Also remove the logging of each test that failed. (From OE-Core rev: 073575ff9c06b2791cc2bd88063d815d2220f038) Signed-off-by: Nathan Rossi <nathan@nathanrossi.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/gcc.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/gcc.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/meta/lib/oeqa/selftest/cases/gcc.py b/meta/lib/oeqa/selftest/cases/gcc.py
index 0b0157e568..dba453f00a 100644
--- a/meta/lib/oeqa/selftest/cases/gcc.py
+++ b/meta/lib/oeqa/selftest/cases/gcc.py
@@ -71,7 +71,6 @@ class GccSelfTest(OESelftestTestCase):
71 bb_vars = get_bb_vars(["B", "TARGET_SYS"], recipe) 71 bb_vars = get_bb_vars(["B", "TARGET_SYS"], recipe)
72 builddir, target_sys = bb_vars["B"], bb_vars["TARGET_SYS"] 72 builddir, target_sys = bb_vars["B"], bb_vars["TARGET_SYS"]
73 73
74 failed = 0
75 for suite in suites: 74 for suite in suites:
76 sumspath = os.path.join(builddir, "gcc", "testsuite", suite, "{0}.sum".format(suite)) 75 sumspath = os.path.join(builddir, "gcc", "testsuite", suite, "{0}.sum".format(suite))
77 if not os.path.exists(sumspath): # check in target dirs 76 if not os.path.exists(sumspath): # check in target dirs
@@ -84,11 +83,6 @@ class GccSelfTest(OESelftestTestCase):
84 with open(sumspath, "r") as f: 83 with open(sumspath, "r") as f:
85 for test, result in parse_values(f): 84 for test, result in parse_values(f):
86 self.tc.extraresults["ptestresult.{}.{}".format(ptestsuite, test)] = {"status" : result} 85 self.tc.extraresults["ptestresult.{}.{}".format(ptestsuite, test)] = {"status" : result}
87 if result == "FAIL":
88 self.logger.info("failed: '{}'".format(test))
89 failed += 1
90
91 self.assertEqual(failed, 0)
92 86
93class GccSelfTestSystemEmulated(GccSelfTest): 87class GccSelfTestSystemEmulated(GccSelfTest):
94 default_installed_packages = ["libgcc", "libstdc++", "libatomic", "libgomp"] 88 default_installed_packages = ["libgcc", "libstdc++", "libatomic", "libgomp"]