All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH RESEND] test/py: skip tests that require large CONFIG_SYS_MAXARGS
@ 2016-02-16  0:40 Stephen Warren
  2016-02-19 20:55 ` Simon Glass
  2016-02-26 13:43 ` [U-Boot] [U-Boot, " Tom Rini
  0 siblings, 2 replies; 3+ messages in thread
From: Stephen Warren @ 2016-02-16  0:40 UTC (permalink / raw)
  To: u-boot

test_hush_if_test.py executes commands that require large values of
CONFIG_SYS_MAXARGS. Detect cases where the configured value is too low
and skip those tests.

Ideally, this would be implemented inside console.run_command(). However,
the command passed to that function is already a completely formed string,
and determining its argument count usage would require splitting commands
at ;, handling quoting to deal with arguments containing spaces, etc. Even
passing the command as a list wouldn't solve all these issues, since we'd
still need to split commands on ; and deal with cases like "if test ..."
which consumes 0 of the argument count.

Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
---
(Resending since I forgot to Cc the list)

 test/py/tests/test_hush_if_test.py | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/test/py/tests/test_hush_if_test.py b/test/py/tests/test_hush_if_test.py
index 8b88425a6598..1eeaa5b0471a 100644
--- a/test/py/tests/test_hush_if_test.py
+++ b/test/py/tests/test_hush_if_test.py
@@ -97,6 +97,14 @@ subtests = (
 def exec_hush_if(u_boot_console, expr, result):
     """Execute a shell "if" command, and validate its result."""
 
+    config = u_boot_console.config.buildconfig
+    maxargs = int(config.get('config_sys_maxargs', '0'))
+    args = len(expr.split(' ')) - 1
+    if args > maxargs:
+        u_boot_console.log.warning('CONFIG_SYS_MAXARGS too low; need ' +
+            str(args))
+        pytest.skip()
+
     cmd = 'if ' + expr + '; then echo true; else echo false; fi'
     response = u_boot_console.run_command(cmd)
     assert response.strip() == str(result).lower()
-- 
1.9.1

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

* [U-Boot] [PATCH RESEND] test/py: skip tests that require large CONFIG_SYS_MAXARGS
  2016-02-16  0:40 [U-Boot] [PATCH RESEND] test/py: skip tests that require large CONFIG_SYS_MAXARGS Stephen Warren
@ 2016-02-19 20:55 ` Simon Glass
  2016-02-26 13:43 ` [U-Boot] [U-Boot, " Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Simon Glass @ 2016-02-19 20:55 UTC (permalink / raw)
  To: u-boot

On 15 February 2016 at 17:40, Stephen Warren <swarren@wwwdotorg.org> wrote:
> test_hush_if_test.py executes commands that require large values of
> CONFIG_SYS_MAXARGS. Detect cases where the configured value is too low
> and skip those tests.
>
> Ideally, this would be implemented inside console.run_command(). However,
> the command passed to that function is already a completely formed string,
> and determining its argument count usage would require splitting commands
> at ;, handling quoting to deal with arguments containing spaces, etc. Even
> passing the command as a list wouldn't solve all these issues, since we'd
> still need to split commands on ; and deal with cases like "if test ..."
> which consumes 0 of the argument count.
>
> Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
> ---
> (Resending since I forgot to Cc the list)
>
>  test/py/tests/test_hush_if_test.py | 8 ++++++++
>  1 file changed, 8 insertions(+)

Acked-by: Simon Glass <sjg@chromium.org>

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

* [U-Boot] [U-Boot, RESEND] test/py: skip tests that require large CONFIG_SYS_MAXARGS
  2016-02-16  0:40 [U-Boot] [PATCH RESEND] test/py: skip tests that require large CONFIG_SYS_MAXARGS Stephen Warren
  2016-02-19 20:55 ` Simon Glass
@ 2016-02-26 13:43 ` Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Tom Rini @ 2016-02-26 13:43 UTC (permalink / raw)
  To: u-boot

On Mon, Feb 15, 2016 at 05:40:34PM -0700, Stephen Warren wrote:

> test_hush_if_test.py executes commands that require large values of
> CONFIG_SYS_MAXARGS. Detect cases where the configured value is too low
> and skip those tests.
> 
> Ideally, this would be implemented inside console.run_command(). However,
> the command passed to that function is already a completely formed string,
> and determining its argument count usage would require splitting commands
> at ;, handling quoting to deal with arguments containing spaces, etc. Even
> passing the command as a list wouldn't solve all these issues, since we'd
> still need to split commands on ; and deal with cases like "if test ..."
> which consumes 0 of the argument count.
> 
> Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
> Acked-by: Simon Glass <sjg@chromium.org>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20160226/2a6f0a3f/attachment.sig>

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

end of thread, other threads:[~2016-02-26 13:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-16  0:40 [U-Boot] [PATCH RESEND] test/py: skip tests that require large CONFIG_SYS_MAXARGS Stephen Warren
2016-02-19 20:55 ` Simon Glass
2016-02-26 13:43 ` [U-Boot] [U-Boot, " Tom Rini

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.