summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/reproducible.py
diff options
context:
space:
mode:
authorJoshua Watt <JPEWhacker@gmail.com>2022-01-06 10:42:36 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-01-07 14:39:17 +0000
commitbc22fe89fd1d6590975bcb5e3f1f8ecac354abc2 (patch)
treeb06e12e86a072a9590c482d18d5f5ea057be16d3 /meta/lib/oeqa/selftest/cases/reproducible.py
parentd5279dac962fc2483cd01ea86b12985c573e1d6d (diff)
downloadpoky-bc22fe89fd1d6590975bcb5e3f1f8ecac354abc2.tar.gz
selftest: reproducible: Set maximum report size
Diffoscope can end up running for a very long time if there are a lot of changes. To put a limit on how long it can run, cap the maximum report size at 250 MB by default. (From OE-Core rev: 52d5f76f54eac384f9480dffe96df089d9ee8f33) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/reproducible.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/reproducible.py10
1 files changed, 7 insertions, 3 deletions
diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeqa/selftest/cases/reproducible.py
index fce48a2943..35ad0009a8 100644
--- a/meta/lib/oeqa/selftest/cases/reproducible.py
+++ b/meta/lib/oeqa/selftest/cases/reproducible.py
@@ -105,8 +105,9 @@ def compare_file(reference, test, diffutils_sysroot):
105 result.status = SAME 105 result.status = SAME
106 return result 106 return result
107 107
108def run_diffoscope(a_dir, b_dir, html_dir, **kwargs): 108def run_diffoscope(a_dir, b_dir, html_dir, max_report_size=0, **kwargs):
109 return runCmd(['diffoscope', '--no-default-limits', '--exclude-directory-metadata', 'yes', '--html-dir', html_dir, a_dir, b_dir], 109 return runCmd(['diffoscope', '--no-default-limits', '--max-report-size', str(max_report_size),
110 '--exclude-directory-metadata', 'yes', '--html-dir', html_dir, a_dir, b_dir],
110 **kwargs) 111 **kwargs)
111 112
112class DiffoscopeTests(OESelftestTestCase): 113class DiffoscopeTests(OESelftestTestCase):
@@ -136,6 +137,9 @@ class ReproducibleTests(OESelftestTestCase):
136 137
137 package_classes = ['deb', 'ipk', 'rpm'] 138 package_classes = ['deb', 'ipk', 'rpm']
138 139
140 # Maximum report size, in bytes
141 max_report_size = 250 * 1024 * 1024
142
139 # targets are the things we want to test the reproducibility of 143 # targets are the things we want to test the reproducibility of
140 targets = ['core-image-minimal', 'core-image-sato', 'core-image-full-cmdline', 'core-image-weston', 'world'] 144 targets = ['core-image-minimal', 'core-image-sato', 'core-image-full-cmdline', 'core-image-weston', 'world']
141 # sstate targets are things to pull from sstate to potentially cut build/debugging time 145 # sstate targets are things to pull from sstate to potentially cut build/debugging time
@@ -311,7 +315,7 @@ class ReproducibleTests(OESelftestTestCase):
311 # Copy jquery to improve the diffoscope output usability 315 # Copy jquery to improve the diffoscope output usability
312 self.copy_file(os.path.join(jquery_sysroot, 'usr/share/javascript/jquery/jquery.min.js'), os.path.join(package_html_dir, 'jquery.js')) 316 self.copy_file(os.path.join(jquery_sysroot, 'usr/share/javascript/jquery/jquery.min.js'), os.path.join(package_html_dir, 'jquery.js'))
313 317
314 run_diffoscope('reproducibleA', 'reproducibleB', package_html_dir, 318 run_diffoscope('reproducibleA', 'reproducibleB', package_html_dir, max_report_size=self.max_report_size,
315 native_sysroot=diffoscope_sysroot, ignore_status=True, cwd=package_dir) 319 native_sysroot=diffoscope_sysroot, ignore_status=True, cwd=package_dir)
316 320
317 if fails: 321 if fails: