summaryrefslogtreecommitdiffstats
path: root/meta/lib
diff options
context:
space:
mode:
authorYoann Congal <yoann.congal@smile.fr>2025-02-04 00:48:35 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2025-02-05 12:49:56 +0000
commit41aab515a76414bbc0d3e0d36f942ebc5fcd2bce (patch)
tree55bde4b9940766a17a5bc490818ef68895d65e45 /meta/lib
parent123f8e78f30a13402d268461ae41a179350c63fb (diff)
downloadpoky-41aab515a76414bbc0d3e0d36f942ebc5fcd2bce.tar.gz
selftest/reproducible: Move a comment to follow the line it concerns
The code line was moved in commit 5a9a5ad6a7be ("reproducibility: continue testing in case of build failure") (From OE-Core rev: b4b60941153ebeb5019b26eeed593d0a1cdb4012) Signed-off-by: Yoann Congal <yoann.congal@smile.fr> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r--meta/lib/oeqa/selftest/cases/reproducible.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeqa/selftest/cases/reproducible.py
index 3fb0e5ee5b..30eea2675e 100644
--- a/meta/lib/oeqa/selftest/cases/reproducible.py
+++ b/meta/lib/oeqa/selftest/cases/reproducible.py
@@ -275,8 +275,8 @@ class ReproducibleTests(OESelftestTestCase):
275 self.logger.info("Building %s (sstate%s allowed)..." % (name, '' if use_sstate else ' NOT')) 275 self.logger.info("Building %s (sstate%s allowed)..." % (name, '' if use_sstate else ' NOT'))
276 self.write_config(config) 276 self.write_config(config)
277 d = get_bb_vars(capture_vars) 277 d = get_bb_vars(capture_vars)
278 # targets used to be called images
279 try: 278 try:
279 # targets used to be called images
280 bitbake("--continue "+' '.join(getattr(self, 'images', self.targets))) 280 bitbake("--continue "+' '.join(getattr(self, 'images', self.targets)))
281 except AssertionError as e: 281 except AssertionError as e:
282 bitbake_failure_count += 1 282 bitbake_failure_count += 1