public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3] test/py: only check for SPL signature if SPL uses serial output
@ 2016-02-17 17:32 Heiko Schocher
  2016-02-17 17:50 ` Stephen Warren
  2016-02-25 15:24 ` [U-Boot] [U-Boot, " Tom Rini
  0 siblings, 2 replies; 3+ messages in thread
From: Heiko Schocher @ 2016-02-17 17:32 UTC (permalink / raw)
  To: u-boot

check for U-Boot SPL signature only if SPL really has a serial output.
So check if CONFIG_SPL_SERIAL_SUPPORT is active in board config.

Signed-off-by: Heiko Schocher <hs@denx.de>
---
found this while trying test/py on the smartweb
board, which has SPL but no SPL serial output.

Changes in v3:
- add comments from Stephen Warren:
  change incorrect "bcfg = u_boot_console.config.buildconfig"
  init into "bcfg = self.config.buildconfig"

Changes in v2:
- add comments from Stephen Warren:
  - introduce some variables to shorten text
  - do not use nested if, instead use "if a and b"
  - use wrapping of 72-74 chars in commit message
- add Michal Simek to Cc

 test/py/u_boot_console_base.py | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/test/py/u_boot_console_base.py b/test/py/u_boot_console_base.py
index bc2bd76..d6502c6 100644
--- a/test/py/u_boot_console_base.py
+++ b/test/py/u_boot_console_base.py
@@ -303,8 +303,13 @@ class ConsoleBase(object):
             if not self.config.gdbserver:
                 self.p.timeout = 30000
             self.p.logfile_read = self.logstream
-            if self.config.buildconfig.get('config_spl', False) == 'y':
-                m = self.p.expect([pattern_u_boot_spl_signon] + self.bad_patterns)
+            bcfg = self.config.buildconfig
+            config_spl = bcfg.get('config_spl', 'n') == 'y'
+            config_spl_serial_support = bcfg.get('config_spl_serial_support',
+                                                 'n') == 'y'
+            if config_spl and config_spl_serial_support:
+                m = self.p.expect([pattern_u_boot_spl_signon] +
+                                  self.bad_patterns)
                 if m != 0:
                     raise Exception('Bad pattern found on console: ' +
                                     self.bad_pattern_ids[m - 1])
-- 
2.5.0

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

* [U-Boot] [PATCH v3] test/py: only check for SPL signature if SPL uses serial output
  2016-02-17 17:32 [U-Boot] [PATCH v3] test/py: only check for SPL signature if SPL uses serial output Heiko Schocher
@ 2016-02-17 17:50 ` Stephen Warren
  2016-02-25 15:24 ` [U-Boot] [U-Boot, " Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Stephen Warren @ 2016-02-17 17:50 UTC (permalink / raw)
  To: u-boot

On 02/17/2016 10:32 AM, Heiko Schocher wrote:
> check for U-Boot SPL signature only if SPL really has a serial output.
> So check if CONFIG_SPL_SERIAL_SUPPORT is active in board config.

Tested-by: Stephen Warren <swarren@nvidia.com>
Reviewed-by: Stephen Warren <swarren@nvidia.com>

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

* [U-Boot] [U-Boot, v3] test/py: only check for SPL signature if SPL uses serial output
  2016-02-17 17:32 [U-Boot] [PATCH v3] test/py: only check for SPL signature if SPL uses serial output Heiko Schocher
  2016-02-17 17:50 ` Stephen Warren
@ 2016-02-25 15:24 ` Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Tom Rini @ 2016-02-25 15:24 UTC (permalink / raw)
  To: u-boot

On Wed, Feb 17, 2016 at 06:32:51PM +0100, Heiko Schocher wrote:

> check for U-Boot SPL signature only if SPL really has a serial output.
> So check if CONFIG_SPL_SERIAL_SUPPORT is active in board config.
> 
> Signed-off-by: Heiko Schocher <hs@denx.de>
> Tested-by: Stephen Warren <swarren@nvidia.com>
> Reviewed-by: Stephen Warren <swarren@nvidia.com>

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/20160225/448bf3cc/attachment.sig>

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

end of thread, other threads:[~2016-02-25 15:24 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-17 17:32 [U-Boot] [PATCH v3] test/py: only check for SPL signature if SPL uses serial output Heiko Schocher
2016-02-17 17:50 ` Stephen Warren
2016-02-25 15:24 ` [U-Boot] [U-Boot, " Tom Rini

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