From: Richard Purdie Date: Fri, 26 Feb 2021 17:45:20 +0000 (+0000) Subject: selftest/reproducible: Don't call sync between each file compare X-Git-Tag: 2020-10.3-gatesgarth~13 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=1fddd6b891265956e0a26963459e7511d757cace;p=openembedded-core.git selftest/reproducible: Don't call sync between each file compare Calling sync between each file compare is horrible performance wise as we compare thousands of files. We don't care about IO latency here so disable. Signed-off-by: Richard Purdie (cherry picked from commit 25f78abd8bbeb201fd9452e7983e015027954948) Signed-off-by: Anuj Mittal --- diff --git a/meta/lib/oeqa/selftest/cases/reproducible.py b/meta/lib/oeqa/selftest/cases/reproducible.py index 4f9adaf301..cd7be7d436 100644 --- a/meta/lib/oeqa/selftest/cases/reproducible.py +++ b/meta/lib/oeqa/selftest/cases/reproducible.py @@ -68,7 +68,7 @@ def compare_file(reference, test, diffutils_sysroot): result.status = MISSING return result - r = runCmd(['cmp', '--quiet', reference, test], native_sysroot=diffutils_sysroot, ignore_status=True) + r = runCmd(['cmp', '--quiet', reference, test], native_sysroot=diffutils_sysroot, ignore_status=True, sync=False) if r.status: result.status = DIFFERENT