public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] test/py: Detect timeout in phy negotiation
@ 2016-05-17 13:57 Michal Simek
  2016-05-17 16:50 ` Stephen Warren
  0 siblings, 1 reply; 9+ messages in thread
From: Michal Simek @ 2016-05-17 13:57 UTC (permalink / raw)
  To: u-boot

If timeout happen it should be reported as fault.

Signed-off-by: Michal Simek <michal.simek@xilinx.com>
---

 test/py/tests/test_net.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/test/py/tests/test_net.py b/test/py/tests/test_net.py
index 4f4a876c1335..833a8fd5b3e3 100644
--- a/test/py/tests/test_net.py
+++ b/test/py/tests/test_net.py
@@ -81,6 +81,7 @@ def test_net_dhcp(u_boot_console):
 
     u_boot_console.run_command('setenv autoload no')
     output = u_boot_console.run_command('dhcp')
+    assert 'TIMEOUT' not in output
     assert 'DHCP client bound to address ' in output
 
     global net_set_up
@@ -117,6 +118,7 @@ def test_net_ping(u_boot_console):
         pytest.skip('Network not initialized')
 
     output = u_boot_console.run_command('ping $serverip')
+    assert 'TIMEOUT' not in output
     assert 'is alive' in output
 
 @pytest.mark.buildconfigspec('cmd_net')
@@ -152,6 +154,7 @@ def test_net_tftpboot(u_boot_console):
     sz = f.get('size', None)
     if sz:
         expected_text += '%d' % sz
+    assert 'TIMEOUT' not in output
     assert expected_text in output
 
     expected_crc = f.get('crc32', None)
-- 
1.9.1

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

* [U-Boot] [PATCH] test/py: Detect timeout in phy negotiation
  2016-05-17 13:57 [U-Boot] [PATCH] test/py: Detect timeout in phy negotiation Michal Simek
@ 2016-05-17 16:50 ` Stephen Warren
  2016-05-17 16:56   ` Michal Simek
  0 siblings, 1 reply; 9+ messages in thread
From: Stephen Warren @ 2016-05-17 16:50 UTC (permalink / raw)
  To: u-boot

On 05/17/2016 07:57 AM, Michal Simek wrote:
> If timeout happen it should be reported as fault.

Presumably if a timeout occurs, the expected text does not appear, i.e. 
the existing assert fails anyway?

Anyway, it's useful to point out problems explicitly, so,
Acked-by: Stephen Warren <swarren@nvidia.com>

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

* [U-Boot] [PATCH] test/py: Detect timeout in phy negotiation
  2016-05-17 16:50 ` Stephen Warren
@ 2016-05-17 16:56   ` Michal Simek
  2016-05-17 17:00     ` Stephen Warren
  0 siblings, 1 reply; 9+ messages in thread
From: Michal Simek @ 2016-05-17 16:56 UTC (permalink / raw)
  To: u-boot

Hi Stephen,

On 17.5.2016 18:50, Stephen Warren wrote:
> On 05/17/2016 07:57 AM, Michal Simek wrote:
>> If timeout happen it should be reported as fault.
> 
> Presumably if a timeout occurs, the expected text does not appear, i.e.
> the existing assert fails anyway?
> 
> Anyway, it's useful to point out problems explicitly, so,
> Acked-by: Stephen Warren <swarren@nvidia.com>

Unfortunately I found this issue when I was checking logs where I am
getting this.

ethernet at e000b000 Waiting for PHY auto negotiation to complete.........
TIMEOUT !
BOOTP broadcast 1
BOOTP broadcast 2
BOOTP broadcast 3
DHCP client bound to address 192.168.0.107 (882 ms)
Zynq> .Zynq> setenv serverip 192.168.0.105

I haven't looked at the exact reason why it is failing but IMHO it is
worth to check.

Thanks,
Michal

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

* [U-Boot] [PATCH] test/py: Detect timeout in phy negotiation
  2016-05-17 16:56   ` Michal Simek
@ 2016-05-17 17:00     ` Stephen Warren
  2016-05-17 17:03       ` Michal Simek
  0 siblings, 1 reply; 9+ messages in thread
From: Stephen Warren @ 2016-05-17 17:00 UTC (permalink / raw)
  To: u-boot

On 05/17/2016 10:56 AM, Michal Simek wrote:
> Hi Stephen,
>
> On 17.5.2016 18:50, Stephen Warren wrote:
>> On 05/17/2016 07:57 AM, Michal Simek wrote:
>>> If timeout happen it should be reported as fault.
>>
>> Presumably if a timeout occurs, the expected text does not appear, i.e.
>> the existing assert fails anyway?
>>
>> Anyway, it's useful to point out problems explicitly, so,
>> Acked-by: Stephen Warren <swarren@nvidia.com>
>
> Unfortunately I found this issue when I was checking logs where I am
> getting this.
>
> ethernet at e000b000 Waiting for PHY auto negotiation to complete.........
> TIMEOUT !
> BOOTP broadcast 1
> BOOTP broadcast 2
> BOOTP broadcast 3
> DHCP client bound to address 192.168.0.107 (882 ms)
> Zynq> .Zynq> setenv serverip 192.168.0.105
>
> I haven't looked at the exact reason why it is failing but IMHO it is
> worth to check.

Oh, in that case I think I should withdraw my ack; in the log above, the 
operation completed successfully, so I'm not convinced the test should 
be marked a failure. I thought this change simply provided more detail 
re: the cause of a test failure.

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

* [U-Boot] [PATCH] test/py: Detect timeout in phy negotiation
  2016-05-17 17:00     ` Stephen Warren
@ 2016-05-17 17:03       ` Michal Simek
  2016-05-17 17:36         ` Stephen Warren
  0 siblings, 1 reply; 9+ messages in thread
From: Michal Simek @ 2016-05-17 17:03 UTC (permalink / raw)
  To: u-boot

On 17.5.2016 19:00, Stephen Warren wrote:
> On 05/17/2016 10:56 AM, Michal Simek wrote:
>> Hi Stephen,
>>
>> On 17.5.2016 18:50, Stephen Warren wrote:
>>> On 05/17/2016 07:57 AM, Michal Simek wrote:
>>>> If timeout happen it should be reported as fault.
>>>
>>> Presumably if a timeout occurs, the expected text does not appear, i.e.
>>> the existing assert fails anyway?
>>>
>>> Anyway, it's useful to point out problems explicitly, so,
>>> Acked-by: Stephen Warren <swarren@nvidia.com>
>>
>> Unfortunately I found this issue when I was checking logs where I am
>> getting this.
>>
>> ethernet at e000b000 Waiting for PHY auto negotiation to complete.........
>> TIMEOUT !
>> BOOTP broadcast 1
>> BOOTP broadcast 2
>> BOOTP broadcast 3
>> DHCP client bound to address 192.168.0.107 (882 ms)
>> Zynq> .Zynq> setenv serverip 192.168.0.105
>>
>> I haven't looked at the exact reason why it is failing but IMHO it is
>> worth to check.
> 
> Oh, in that case I think I should withdraw my ack; in the log above, the
> operation completed successfully, so I'm not convinced the test should
> be marked a failure. I thought this change simply provided more detail
> re: the cause of a test failure.

Is there any other way how to run just phy negotiation and mark this
test as fail?

Thanks
Michal

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

* [U-Boot] [PATCH] test/py: Detect timeout in phy negotiation
  2016-05-17 17:03       ` Michal Simek
@ 2016-05-17 17:36         ` Stephen Warren
  2016-05-17 18:00           ` Michal Simek
  0 siblings, 1 reply; 9+ messages in thread
From: Stephen Warren @ 2016-05-17 17:36 UTC (permalink / raw)
  To: u-boot

On 05/17/2016 11:03 AM, Michal Simek wrote:
> On 17.5.2016 19:00, Stephen Warren wrote:
>> On 05/17/2016 10:56 AM, Michal Simek wrote:
>>> Hi Stephen,
>>>
>>> On 17.5.2016 18:50, Stephen Warren wrote:
>>>> On 05/17/2016 07:57 AM, Michal Simek wrote:
>>>>> If timeout happen it should be reported as fault.
>>>>
>>>> Presumably if a timeout occurs, the expected text does not appear, i.e.
>>>> the existing assert fails anyway?
>>>>
>>>> Anyway, it's useful to point out problems explicitly, so,
>>>> Acked-by: Stephen Warren <swarren@nvidia.com>
>>>
>>> Unfortunately I found this issue when I was checking logs where I am
>>> getting this.
>>>
>>> ethernet at e000b000 Waiting for PHY auto negotiation to complete.........
>>> TIMEOUT !
>>> BOOTP broadcast 1
>>> BOOTP broadcast 2
>>> BOOTP broadcast 3
>>> DHCP client bound to address 192.168.0.107 (882 ms)
>>> Zynq> .Zynq> setenv serverip 192.168.0.105
>>>
>>> I haven't looked at the exact reason why it is failing but IMHO it is
>>> worth to check.
>>
>> Oh, in that case I think I should withdraw my ack; in the log above, the
>> operation completed successfully, so I'm not convinced the test should
>> be marked a failure. I thought this change simply provided more detail
>> re: the cause of a test failure.
>
> Is there any other way how to run just phy negotiation and mark this
> test as fail?

I don't see anything obvious that will do that; I think that only 
happens when net_loop starts. It might be possible to add some new 
command to test just PHY startup, or a new mode for net_loop() that just 
waited for link up and did no protocol work.

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

* [U-Boot] [PATCH] test/py: Detect timeout in phy negotiation
  2016-05-17 17:36         ` Stephen Warren
@ 2016-05-17 18:00           ` Michal Simek
  2016-05-17 19:09             ` Stephen Warren
  0 siblings, 1 reply; 9+ messages in thread
From: Michal Simek @ 2016-05-17 18:00 UTC (permalink / raw)
  To: u-boot

On 17.5.2016 19:36, Stephen Warren wrote:
> On 05/17/2016 11:03 AM, Michal Simek wrote:
>> On 17.5.2016 19:00, Stephen Warren wrote:
>>> On 05/17/2016 10:56 AM, Michal Simek wrote:
>>>> Hi Stephen,
>>>>
>>>> On 17.5.2016 18:50, Stephen Warren wrote:
>>>>> On 05/17/2016 07:57 AM, Michal Simek wrote:
>>>>>> If timeout happen it should be reported as fault.
>>>>>
>>>>> Presumably if a timeout occurs, the expected text does not appear,
>>>>> i.e.
>>>>> the existing assert fails anyway?
>>>>>
>>>>> Anyway, it's useful to point out problems explicitly, so,
>>>>> Acked-by: Stephen Warren <swarren@nvidia.com>
>>>>
>>>> Unfortunately I found this issue when I was checking logs where I am
>>>> getting this.
>>>>
>>>> ethernet at e000b000 Waiting for PHY auto negotiation to complete.........
>>>> TIMEOUT !
>>>> BOOTP broadcast 1
>>>> BOOTP broadcast 2
>>>> BOOTP broadcast 3
>>>> DHCP client bound to address 192.168.0.107 (882 ms)
>>>> Zynq> .Zynq> setenv serverip 192.168.0.105
>>>>
>>>> I haven't looked at the exact reason why it is failing but IMHO it is
>>>> worth to check.
>>>
>>> Oh, in that case I think I should withdraw my ack; in the log above, the
>>> operation completed successfully, so I'm not convinced the test should
>>> be marked a failure. I thought this change simply provided more detail
>>> re: the cause of a test failure.
>>
>> Is there any other way how to run just phy negotiation and mark this
>> test as fail?
> 
> I don't see anything obvious that will do that; I think that only
> happens when net_loop starts. It might be possible to add some new
> command to test just PHY startup, or a new mode for net_loop() that just
> waited for link up and did no protocol work.

ok. It means you are saying that this is bug and we are not able to test
it by single test. That's why I think this should be report as a bug
when this is happening just to hands up there is a problem.

Not sure if there is any way to report is as a warning instead of bug
that test case will pass with warning.

Thanks,
Michal

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

* [U-Boot] [PATCH] test/py: Detect timeout in phy negotiation
  2016-05-17 18:00           ` Michal Simek
@ 2016-05-17 19:09             ` Stephen Warren
  2016-05-18 10:56               ` Michal Simek
  0 siblings, 1 reply; 9+ messages in thread
From: Stephen Warren @ 2016-05-17 19:09 UTC (permalink / raw)
  To: u-boot

On 05/17/2016 12:00 PM, Michal Simek wrote:
> On 17.5.2016 19:36, Stephen Warren wrote:
>> On 05/17/2016 11:03 AM, Michal Simek wrote:
>>> On 17.5.2016 19:00, Stephen Warren wrote:
>>>> On 05/17/2016 10:56 AM, Michal Simek wrote:
>>>>> Hi Stephen,
>>>>>
>>>>> On 17.5.2016 18:50, Stephen Warren wrote:
>>>>>> On 05/17/2016 07:57 AM, Michal Simek wrote:
>>>>>>> If timeout happen it should be reported as fault.
>>>>>>
>>>>>> Presumably if a timeout occurs, the expected text does not appear,
>>>>>> i.e.
>>>>>> the existing assert fails anyway?
>>>>>>
>>>>>> Anyway, it's useful to point out problems explicitly, so,
>>>>>> Acked-by: Stephen Warren <swarren@nvidia.com>
>>>>>
>>>>> Unfortunately I found this issue when I was checking logs where I am
>>>>> getting this.
>>>>>
>>>>> ethernet at e000b000 Waiting for PHY auto negotiation to complete.........
>>>>> TIMEOUT !
>>>>> BOOTP broadcast 1
>>>>> BOOTP broadcast 2
>>>>> BOOTP broadcast 3
>>>>> DHCP client bound to address 192.168.0.107 (882 ms)
>>>>> Zynq> .Zynq> setenv serverip 192.168.0.105
>>>>>
>>>>> I haven't looked at the exact reason why it is failing but IMHO it is
>>>>> worth to check.
>>>>
>>>> Oh, in that case I think I should withdraw my ack; in the log above, the
>>>> operation completed successfully, so I'm not convinced the test should
>>>> be marked a failure. I thought this change simply provided more detail
>>>> re: the cause of a test failure.
>>>
>>> Is there any other way how to run just phy negotiation and mark this
>>> test as fail?
>>
>> I don't see anything obvious that will do that; I think that only
>> happens when net_loop starts. It might be possible to add some new
>> command to test just PHY startup, or a new mode for net_loop() that just
>> waited for link up and did no protocol work.
>
> ok. It means you are saying that this is bug and we are not able to test
> it by single test. That's why I think this should be report as a bug
> when this is happening just to hands up there is a problem.
>
> Not sure if there is any way to report is as a warning instead of bug
> that test case will pass with warning.

At least my only-marginally-old version of pytest (2.5.1) doesn't appear 
to have any concept of warnings. Some quite new versions of pytest do, 
although I'm not sure how they're reported. Integrating some form of 
warning system into the tests could be useful though.

I wonder if the correct fix for this issue isn't to make the PHY code 
actively return an error whenever there is a TIMEOUT raised, rather than 
presumably ignoring it as it does now (since the network code goes on to 
actually work correctly)?

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

* [U-Boot] [PATCH] test/py: Detect timeout in phy negotiation
  2016-05-17 19:09             ` Stephen Warren
@ 2016-05-18 10:56               ` Michal Simek
  0 siblings, 0 replies; 9+ messages in thread
From: Michal Simek @ 2016-05-18 10:56 UTC (permalink / raw)
  To: u-boot

On 17.5.2016 21:09, Stephen Warren wrote:
> On 05/17/2016 12:00 PM, Michal Simek wrote:
>> On 17.5.2016 19:36, Stephen Warren wrote:
>>> On 05/17/2016 11:03 AM, Michal Simek wrote:
>>>> On 17.5.2016 19:00, Stephen Warren wrote:
>>>>> On 05/17/2016 10:56 AM, Michal Simek wrote:
>>>>>> Hi Stephen,
>>>>>>
>>>>>> On 17.5.2016 18:50, Stephen Warren wrote:
>>>>>>> On 05/17/2016 07:57 AM, Michal Simek wrote:
>>>>>>>> If timeout happen it should be reported as fault.
>>>>>>>
>>>>>>> Presumably if a timeout occurs, the expected text does not appear,
>>>>>>> i.e.
>>>>>>> the existing assert fails anyway?
>>>>>>>
>>>>>>> Anyway, it's useful to point out problems explicitly, so,
>>>>>>> Acked-by: Stephen Warren <swarren@nvidia.com>
>>>>>>
>>>>>> Unfortunately I found this issue when I was checking logs where I am
>>>>>> getting this.
>>>>>>
>>>>>> ethernet at e000b000 Waiting for PHY auto negotiation to
>>>>>> complete.........
>>>>>> TIMEOUT !
>>>>>> BOOTP broadcast 1
>>>>>> BOOTP broadcast 2
>>>>>> BOOTP broadcast 3
>>>>>> DHCP client bound to address 192.168.0.107 (882 ms)
>>>>>> Zynq> .Zynq> setenv serverip 192.168.0.105
>>>>>>
>>>>>> I haven't looked at the exact reason why it is failing but IMHO it is
>>>>>> worth to check.
>>>>>
>>>>> Oh, in that case I think I should withdraw my ack; in the log
>>>>> above, the
>>>>> operation completed successfully, so I'm not convinced the test should
>>>>> be marked a failure. I thought this change simply provided more detail
>>>>> re: the cause of a test failure.
>>>>
>>>> Is there any other way how to run just phy negotiation and mark this
>>>> test as fail?
>>>
>>> I don't see anything obvious that will do that; I think that only
>>> happens when net_loop starts. It might be possible to add some new
>>> command to test just PHY startup, or a new mode for net_loop() that just
>>> waited for link up and did no protocol work.
>>
>> ok. It means you are saying that this is bug and we are not able to test
>> it by single test. That's why I think this should be report as a bug
>> when this is happening just to hands up there is a problem.
>>
>> Not sure if there is any way to report is as a warning instead of bug
>> that test case will pass with warning.
> 
> At least my only-marginally-old version of pytest (2.5.1) doesn't appear
> to have any concept of warnings. Some quite new versions of pytest do,
> although I'm not sure how they're reported. Integrating some form of
> warning system into the tests could be useful though.

ok.

> 
> I wonder if the correct fix for this issue isn't to make the PHY code
> actively return an error whenever there is a TIMEOUT raised, rather than
> presumably ignoring it as it does now (since the network code goes on to
> actually work correctly)?

I will send some patches to fix this problem that transfers not start
when TIMEOUT happens.

All these boards should be fixed to return error codes properly.
drivers/net/cpsw.c:612:	phy_startup(phy);
drivers/net/keystone_net.c:581:		phy_startup(phy_dev);
drivers/net/keystone_net.c:768:		phy_startup(priv->phydev);
drivers/net/lpc32xx_eth.c:605:	phy_startup(phydev);
drivers/net/mvgbe.c:697:	phy_startup(phydev);
drivers/net/mvneta.c:1478:		phy_startup(phydev);
drivers/net/mvpp2.c:3384:		phy_startup(phy_dev);
drivers/net/pic32_eth.c:343:	phy_startup(priv->phydev);

But again if we have visible errors and code is not handling it properly
I do agree that code should be fixed first but still testing should be
able to capture this problem for others to avoid that this problem
happens again.

Thanks,
Michal

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

end of thread, other threads:[~2016-05-18 10:56 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-17 13:57 [U-Boot] [PATCH] test/py: Detect timeout in phy negotiation Michal Simek
2016-05-17 16:50 ` Stephen Warren
2016-05-17 16:56   ` Michal Simek
2016-05-17 17:00     ` Stephen Warren
2016-05-17 17:03       ` Michal Simek
2016-05-17 17:36         ` Stephen Warren
2016-05-17 18:00           ` Michal Simek
2016-05-17 19:09             ` Stephen Warren
2016-05-18 10:56               ` Michal Simek

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