Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/2] utils/test-pkg: add option to use an alternate toolchains CSV file
@ 2017-07-25 21:36 Arnout Vandecappelle
  2017-07-25 21:36 ` [Buildroot] [PATCH 2/2] utils/readme.txt: add documentation of genrandconfig Arnout Vandecappelle
  2017-07-29 13:44 ` [Buildroot] [PATCH 1/2] utils/test-pkg: add option to use an alternate toolchains CSV file Thomas Petazzoni
  0 siblings, 2 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2017-07-25 21:36 UTC (permalink / raw)
  To: buildroot

When testing a package with test-pkg, it may be useful to override the
set of toolchains used. For example:
- to test with toolchains used in your company;
- to test agains a subset that is known to be problematic;
- to use only toolchains you already have available locally when you
  have no network access.

Add an option to use an alternate CSV file containing the config
fragments of toolchains to try.

Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
v8: reformulate commit message
v7: CSV file instead of directory
v6: s/defconfig/config fragment/g
v5: First version

Loosely based on http://patchwork.ozlabs.org/patch/728395/ but with a
CSV file instead of URL, and completely rewritten help text.
---
 utils/test-pkg | 26 ++++++++++++++++++++------
 1 file changed, 20 insertions(+), 6 deletions(-)

diff --git a/utils/test-pkg b/utils/test-pkg
index f951eda563..6899d44f7c 100755
--- a/utils/test-pkg
+++ b/utils/test-pkg
@@ -5,16 +5,17 @@ TOOLCHAINS_CSV='support/config-fragments/autobuild/toolchain-configs.csv'
 
 main() {
     local o O opts
-    local cfg dir pkg random toolchain
+    local cfg dir pkg random toolchains_dir toolchain
     local ret nb nb_skip nb_fail nb_legal nb_tc build_dir
     local -a toolchains
 
-    o='hc:d:p:r:'
-    O='help,config-snippet:build-dir:package:,random:'
+    o='hc:d:p:r:t:'
+    O='help,config-snippet:build-dir:package:,random:,toolchains-dir:'
     opts="$(getopt -n "${my_name}" -o "${o}" -l "${O}" -- "${@}")"
     eval set -- "${opts}"
 
     random=0
+    toolchains_csv="${TOOLCHAINS_CSV}"
     while [ ${#} -gt 0 ]; do
         case "${1}" in
         (-h|--help)
@@ -32,6 +33,9 @@ main() {
         (-r|--random)
             random="${2}"; shift 2
             ;;
+        (-t|--toolchains-csv)
+            toolchains_csv="${2}"; shift 2
+            ;;
         (--)
             shift; break
             ;;
@@ -50,7 +54,7 @@ main() {
     # Extract the URLs of the toolchains; drop internal toolchains
     # E.g.: http://server/path/to/name.config,arch,libc
     #  -->  http://server/path/to/name.config
-    toolchains=($(sed -r -e 's/,.*//; /internal/d;' "${TOOLCHAINS_CSV}" \
+    toolchains=($(sed -r -e 's/,.*//; /internal/d;' "${toolchains_csv}" \
                   |if [ ${random} -gt 0 ]; then \
                       sort -R |head -n ${random}
                    else
@@ -144,8 +148,13 @@ In case failures are noticed, you can fix the package and just re-run the
 same command again; it will re-run the test where it failed. If you did
 specify a package (with -p), the package build dir will be removed first.
 
-The list of toolchains is retrieved from the Buildroot autobuilders, available
-at ${TOOLCHAINS_URL}.
+The list of toolchains is retrieved from ${TOOLCHAINS_CSV}.
+Only the external toolchains are tried, because building a Buildroot toolchain
+would take too long. An alternative toolchains CSV file can be specified with
+the -t option. This file should have lines consisting of the path to the
+toolchain config fragment and the required host architecture, separated by a
+comma. The config fragments should contain only the toolchain and architecture
+settings.
 
 Options:
 
@@ -167,6 +176,11 @@ Options:
         Limit the tests to the N randomly selected toolchains, instead of
         building with all toolchains.
 
+    -t CSVFILE, --toolchains-csv CSVFILE
+        CSV file containing the paths to config fragments of toolchains to
+        try. If not specified, the toolchains in ${TOOLCHAINS_CSV} will be
+        used.
+
 Example:
 
     Testing libcec would require a config snippet that contains:
-- 
2.13.2

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

* [Buildroot] [PATCH 2/2] utils/readme.txt: add documentation of genrandconfig
  2017-07-25 21:36 [Buildroot] [PATCH 1/2] utils/test-pkg: add option to use an alternate toolchains CSV file Arnout Vandecappelle
@ 2017-07-25 21:36 ` Arnout Vandecappelle
  2017-07-29 13:44 ` [Buildroot] [PATCH 1/2] utils/test-pkg: add option to use an alternate toolchains CSV file Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2017-07-25 21:36 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
---
 utils/readme.txt | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/utils/readme.txt b/utils/readme.txt
index fd20e8ee67..3064ecec32 100644
--- a/utils/readme.txt
+++ b/utils/readme.txt
@@ -15,6 +15,11 @@ check-package
     a script that checks the coding style of a package's Config.in and
     .mk files, and also tests them for various types of typoes.
 
+genrandconfig
+    a script that generates a random configuration, used by the autobuilders
+    (http://autobuild.buildroot.org). It selects a random toolchain from
+    support/config-fragments/autobuild and randomly selects packages to build.
+
 get-developpers
     a script to return the list of people interested in a specific part
     of Buildroot, so they can be Cc:ed on a mail. Accepts a patch as
-- 
2.13.2

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

* [Buildroot] [PATCH 1/2] utils/test-pkg: add option to use an alternate toolchains CSV file
  2017-07-25 21:36 [Buildroot] [PATCH 1/2] utils/test-pkg: add option to use an alternate toolchains CSV file Arnout Vandecappelle
  2017-07-25 21:36 ` [Buildroot] [PATCH 2/2] utils/readme.txt: add documentation of genrandconfig Arnout Vandecappelle
@ 2017-07-29 13:44 ` Thomas Petazzoni
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2017-07-29 13:44 UTC (permalink / raw)
  To: buildroot

Hello,

On Tue, 25 Jul 2017 23:36:12 +0200, Arnout Vandecappelle
(Essensium/Mind) wrote:
> When testing a package with test-pkg, it may be useful to override the
> set of toolchains used. For example:
> - to test with toolchains used in your company;
> - to test agains a subset that is known to be problematic;
> - to use only toolchains you already have available locally when you
>   have no network access.
> 
> Add an option to use an alternate CSV file containing the config
> fragments of toolchains to try.
> 
> Cc: "Yann E. MORIN" <yann.morin.1998@free.fr>
> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
> ---
> v8: reformulate commit message
> v7: CSV file instead of directory
> v6: s/defconfig/config fragment/g
> v5: First version

Both applied to master. Thanks!

Thomas
-- 
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com

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

end of thread, other threads:[~2017-07-29 13:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-25 21:36 [Buildroot] [PATCH 1/2] utils/test-pkg: add option to use an alternate toolchains CSV file Arnout Vandecappelle
2017-07-25 21:36 ` [Buildroot] [PATCH 2/2] utils/readme.txt: add documentation of genrandconfig Arnout Vandecappelle
2017-07-29 13:44 ` [Buildroot] [PATCH 1/2] utils/test-pkg: add option to use an alternate toolchains CSV file Thomas Petazzoni

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