All of lore.kernel.org
 help / color / mirror / Atom feed
From: Simon Glass <sjg@chromium.org>
To: u-boot@lists.denx.de
Subject: [PATCH 02/10] dtoc: add option to disable warnings
Date: Thu, 4 Jun 2020 09:59:20 -0600	[thread overview]
Message-ID: <CAPnjgZ07CCwtO+a5ZPLLaUafTmdEah+77HOrvyE7+5w7w_EJxw@mail.gmail.com> (raw)
In-Reply-To: <20200529181521.22073-3-walter.lozano@collabora.com>

Hi Walter,

On Fri, 29 May 2020 at 12:15, Walter Lozano <walter.lozano@collabora.com> wrote:
>
> As dtoc now performs checks for valid driver names, when running dtoc
> tests several warnings arise as these tests don't use valid driver
> names.
>
> This patch adds an option to disable those warning, which is only
> intended for running tests.
>
> Signed-off-by: Walter Lozano <walter.lozano@collabora.com>
> ---
>  tools/dtoc/dtb_platdata.py | 11 +++++---
>  tools/dtoc/test_dtoc.py    | 54 +++++++++++++++++++-------------------
>  2 files changed, 34 insertions(+), 31 deletions(-)
>
> diff --git a/tools/dtoc/dtb_platdata.py b/tools/dtoc/dtb_platdata.py
> index 23cfda2f88..0a54188348 100644
> --- a/tools/dtoc/dtb_platdata.py
> +++ b/tools/dtoc/dtb_platdata.py
> @@ -141,17 +141,19 @@ class DtbPlatdata(object):
>          _valid_nodes: A list of Node object with compatible strings
>          _include_disabled: true to include nodes marked status = "disabled"
>          _outfile: The current output file (sys.stdout or a real file)
> +        _warning_disabled: true to disable warnings about driver names not found
>          _lines: Stashed list of output lines for outputting in the future
>          _aliases: Dict that hold aliases for compatible strings
>          _drivers: List of valid driver names found in drivers/
>          _driver_aliases: Dict that holds aliases for driver names
>      """
> -    def __init__(self, dtb_fname, include_disabled):
> +    def __init__(self, dtb_fname, include_disabled, warning_disable):
>          self._fdt = None
>          self._dtb_fname = dtb_fname
>          self._valid_nodes = None
>          self._include_disabled = include_disabled
>          self._outfile = None
> +        self._warning_disable = warning_disable
>          self._lines = []
>          self._aliases = {}
>          self._drivers = []
> @@ -177,7 +179,8 @@ class DtbPlatdata(object):
>              compat_c_old = compat_c
>              compat_c = self._driver_aliases.get(compat_c)
>              if not compat_c:
> -                print('WARNING: the driver %s was not found in the driver list' % (compat_c_old))
> +                if not self._warning_disable: # pragma: no cover

Need coverage for this.

> +                    print('WARNING: the driver %s was not found in the driver list' % (compat_c_old))
>                  compat_c = compat_c_old
>              else: # pragma: no cover
>                  aliases_c = [compat_c_old] + aliases_c
> @@ -623,7 +626,7 @@ class DtbPlatdata(object):
>              nodes_to_output.remove(node)
>
>
> -def run_steps(args, dtb_file, include_disabled, output):
> +def run_steps(args, dtb_file, include_disabled, output, warning_disable = False):

no spaces around =

>      """Run all the steps of the dtoc tool
>
>      Args:
> @@ -635,7 +638,7 @@ def run_steps(args, dtb_file, include_disabled, output):
>      if not args:
>          raise ValueError('Please specify a command: struct, platdata')
>
> -    plat = DtbPlatdata(dtb_file, include_disabled)
> +    plat = DtbPlatdata(dtb_file, include_disabled, warning_disable)
>      plat.scan_drivers()
>      plat.scan_dtb()
>      plat.scan_tree()
> diff --git a/tools/dtoc/test_dtoc.py b/tools/dtoc/test_dtoc.py
> index 8498e8303c..a9b605cac8 100755
> --- a/tools/dtoc/test_dtoc.py
> +++ b/tools/dtoc/test_dtoc.py
> @@ -154,12 +154,12 @@ class TestDtoc(unittest.TestCase):
>          """Test output from a device tree file with no nodes"""
>          dtb_file = get_dtb_file('dtoc_test_empty.dts')
>          output = tools.GetOutputFilename('output')
> -        dtb_platdata.run_steps(['struct'], dtb_file, False, output)
> +        dtb_platdata.run_steps(['struct'], dtb_file, False, output, True)
>          with open(output) as infile:
>              lines = infile.read().splitlines()
>          self.assertEqual(HEADER.splitlines(), lines)
>
> -        dtb_platdata.run_steps(['platdata'], dtb_file, False, output)
> +        dtb_platdata.run_steps(['platdata'], dtb_file, False, output, True)

Can you create run_test which calls run_steps with that set that to
True, to avoid adding the param everywhere in this file?

Regards,
Simon

  reply	other threads:[~2020-06-04 15:59 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-05-29 18:15 [PATCH 00/10] improve OF_PLATDATA support Walter Lozano
2020-05-29 18:15 ` [PATCH 01/10] dtoc: add support to scan drivers Walter Lozano
2020-06-04 15:59   ` Simon Glass
2020-06-08 15:49     ` Walter Lozano
2020-06-11 16:15       ` Walter Lozano
2020-06-11 16:44         ` Simon Glass
2020-06-11 16:45       ` Simon Glass
2020-06-11 17:11         ` Walter Lozano
2020-06-11 17:22           ` Simon Glass
2020-06-11 19:07             ` Walter Lozano
2020-06-12  2:22               ` Simon Glass
2020-06-12 17:38                 ` Walter Lozano
2020-06-16 13:43                   ` Simon Glass
2020-05-29 18:15 ` [PATCH 02/10] dtoc: add option to disable warnings Walter Lozano
2020-06-04 15:59   ` Simon Glass [this message]
2020-06-08 15:51     ` Walter Lozano
2020-05-29 18:15 ` [PATCH 03/10] dm: doc: update of-plat with the suppor for driver aliases Walter Lozano
2020-06-04 15:59   ` Simon Glass
2020-05-29 18:15 ` [PATCH 04/10] core: drop const for struct driver_info Walter Lozano
2020-06-04 15:59   ` Simon Glass
2020-05-29 18:15 ` [PATCH 05/10] core: extend struct driver_info to point to device Walter Lozano
2020-05-29 18:56   ` Walter Lozano
2020-05-29 19:00     ` Simon Glass
2020-05-29 19:20       ` Walter Lozano
2020-05-29 20:42         ` Simon Glass
2020-06-04 15:59   ` Simon Glass
2020-06-08 15:53     ` Walter Lozano
2020-05-29 18:15 ` [PATCH 06/10] dtoc: extend dtoc to use struct driver_info when linking nodes Walter Lozano
2020-06-04 15:59   ` Simon Glass
2020-05-29 18:15 ` [PATCH 07/10] dm: doc: update of-plat with new phandle support Walter Lozano
2020-06-04 15:59   ` Simon Glass
2020-06-08 15:54     ` Walter Lozano
2020-05-29 18:15 ` [PATCH 08/10] dtoc: update tests to match new platdata Walter Lozano
2020-06-04 15:59   ` Simon Glass
2020-05-29 18:15 ` [PATCH 09/10] dtoc: update dtb_platdata to support cd-gpios Walter Lozano
2020-06-04 15:59   ` Simon Glass
2020-06-08 16:01     ` Walter Lozano
2020-06-14  2:49       ` Simon Glass
2020-05-29 18:15 ` [PATCH 10/10] dtoc add test for cd-gpios Walter Lozano
2020-06-04 15:59   ` Simon Glass
2020-05-29 18:25 ` [PATCH 00/10] improve OF_PLATDATA support Jagan Teki
2020-05-29 19:15   ` Walter Lozano

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAPnjgZ07CCwtO+a5ZPLLaUafTmdEah+77HOrvyE7+5w7w_EJxw@mail.gmail.com \
    --to=sjg@chromium.org \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.