Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] utils/genrandconfing: randomly enable BR2_REPRODUCIBLE 10% of the times
@ 2019-06-07  8:15 Atharva Lele
  2019-06-07  8:26 ` Arnout Vandecappelle
  0 siblings, 1 reply; 3+ messages in thread
From: Atharva Lele @ 2019-06-07  8:15 UTC (permalink / raw)
  To: buildroot

Initial patch to start reproducibility testing.

Also enable tar filesystem to compare images since diffoscope works well
with tar.

Signed-off-by: Atharva Lele <itsatharva@gmail.com>
---
 utils/genrandconfig | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/utils/genrandconfig b/utils/genrandconfig
index 5f3fe23260..b7d7bf7763 100755
--- a/utils/genrandconfig
+++ b/utils/genrandconfig
@@ -366,6 +366,14 @@ def gen_config(args):
     if randint(0, 4) == 0:
         configlines.append("BR2_SYSTEM_ENABLE_NLS=y\n")
 
+    # Randomly enable BR2_REPRODUCIBLE 10% of times
+    # also enable tar filesystem images for testing
+    if randint(0, 10) == 0:
+        configlines.append("BR2_REPRODUCIBLE=y\n")
+        configlines.append("BR2_TARGET_ROOTFS_TAR=y\n")
+        configlines.append("BR2_TARGET_ROOTFS_TAR_NONE=y\n")
+        configlines.append("BR2_TARGET_ROOTFS_TAR_OPTIONS=\"\"\n")
+
     # Write out the configuration file
     if not os.path.exists(args.outputdir):
         os.makedirs(args.outputdir)
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-06-07  8:42 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-06-07  8:15 [Buildroot] [PATCH 1/1] utils/genrandconfing: randomly enable BR2_REPRODUCIBLE 10% of the times Atharva Lele
2019-06-07  8:26 ` Arnout Vandecappelle
2019-06-07  8:42   ` Atharva Lele

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox