* [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
* [Buildroot] [PATCH 1/1] utils/genrandconfing: randomly enable BR2_REPRODUCIBLE 10% of the times
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
0 siblings, 1 reply; 3+ messages in thread
From: Arnout Vandecappelle @ 2019-06-07 8:26 UTC (permalink / raw)
To: buildroot
On 07/06/2019 10:15, Atharva Lele wrote:
> 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")
Both of these last two lines are the defaults, nobody else is going to set
them, so there's no need to set them explicitly.
Other than that,
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
[In other words: if you respin the patch according to the feedback I gave, you
can add my Reviewed-by tag. But I don't want to add it to this version, that's
why it's indented with a space, so patchwork doesn't pick it up.]
Regards,
Arnout
> +
> # Write out the configuration file
> if not os.path.exists(args.outputdir):
> os.makedirs(args.outputdir)
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH 1/1] utils/genrandconfing: randomly enable BR2_REPRODUCIBLE 10% of the times
2019-06-07 8:26 ` Arnout Vandecappelle
@ 2019-06-07 8:42 ` Atharva Lele
0 siblings, 0 replies; 3+ messages in thread
From: Atharva Lele @ 2019-06-07 8:42 UTC (permalink / raw)
To: buildroot
> Both of these last two lines are the defaults, nobody else is going to
set
> them, so there's no need to set them explicitly.
OK, I'll remove those lines and send a v2.
Regards,
Atharva Lele
On Fri, Jun 7, 2019 at 1:56 PM Arnout Vandecappelle <arnout@mind.be> wrote:
>
>
> On 07/06/2019 10:15, Atharva Lele wrote:
> > 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")
>
> Both of these last two lines are the defaults, nobody else is going to set
> them, so there's no need to set them explicitly.
>
> Other than that,
>
> Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
>
> [In other words: if you respin the patch according to the feedback I gave,
> you
> can add my Reviewed-by tag. But I don't want to add it to this version,
> that's
> why it's indented with a space, so patchwork doesn't pick it up.]
>
> Regards,
> Arnout
>
> > +
> > # Write out the configuration file
> > if not os.path.exists(args.outputdir):
> > os.makedirs(args.outputdir)
> >
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20190607/1d295498/attachment.html>
^ permalink raw reply [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