Message ID | 20161122201009.91460-1-martin@martin.st |
---|---|
State | Committed |
Headers | show |
On 22/11/2016 21:10, Martin Storsjö wrote: > If makeopts_fate is set, these makeopts are used for running the > tests instead of the normal makeopts. If it isn't set, the normal > makeopts variable is used as before. > > This is useful if remote testing on a lesser machine where a large > number of parallel jobs might be undesireable, while wanting to speed > up the build with many parallel processes. > --- > tests/fate.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/fate.sh b/tests/fate.sh > index b8ee1ae..f7ca891 100755 > --- a/tests/fate.sh > +++ b/tests/fate.sh > @@ -73,7 +73,7 @@ compile()( > fate()( > test "$build_only" = "yes" && return > cd ${build} || return > - ${make} ${makeopts} -k fate > + ${make} ${makeopts_fate-${makeopts}} -k fate > ) > > clean(){ > Sounds useful :)
On Tue, Nov 22, 2016 at 10:10:09PM +0200, Martin Storsjö wrote: > If makeopts_fate is set, these makeopts are used for running the > tests instead of the normal makeopts. If it isn't set, the normal > makeopts variable is used as before. > > This is useful if remote testing on a lesser machine where a large > number of parallel jobs might be undesireable, while wanting to speed > up the build with many parallel processes. > --- > tests/fate.sh | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Please add this, commented-out, to the example config file in doc/fate.texi. LGTM otherwise. Diego
diff --git a/tests/fate.sh b/tests/fate.sh index b8ee1ae..f7ca891 100755 --- a/tests/fate.sh +++ b/tests/fate.sh @@ -73,7 +73,7 @@ compile()( fate()( test "$build_only" = "yes" && return cd ${build} || return - ${make} ${makeopts} -k fate + ${make} ${makeopts_fate-${makeopts}} -k fate ) clean(){