Stephen Warren | 6818820 | 2016-01-15 11:15:31 -0700 | [diff] [blame] | 1 | # Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. |
| 2 | # |
| 3 | # SPDX-License-Identifier: GPL-2.0 |
| 4 | |
| 5 | import pytest |
| 6 | import time |
| 7 | |
Michal Simek | 3f090a2 | 2017-12-08 15:47:18 +0100 | [diff] [blame] | 8 | """ |
| 9 | Note: This test doesn't rely on boardenv_* configuration values but they can |
| 10 | change test behavior. |
| 11 | |
| 12 | # Setup env__sleep_accurate to False if time is not accurate on your platform |
| 13 | env__sleep_accurate = False |
| 14 | |
| 15 | """ |
| 16 | |
Stephen Warren | 6818820 | 2016-01-15 11:15:31 -0700 | [diff] [blame] | 17 | def test_sleep(u_boot_console): |
Stephen Warren | 75e731e | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 18 | """Test the sleep command, and validate that it sleeps for approximately |
| 19 | the correct amount of time.""" |
Stephen Warren | 6818820 | 2016-01-15 11:15:31 -0700 | [diff] [blame] | 20 | |
Michal Simek | 3f090a2 | 2017-12-08 15:47:18 +0100 | [diff] [blame] | 21 | sleep_skip = u_boot_console.config.env.get('env__sleep_accurate', True) |
| 22 | if not sleep_skip: |
| 23 | pytest.skip('sleep is not accurate') |
| 24 | |
Tom Rini | 42c6214 | 2016-10-14 19:12:31 -0400 | [diff] [blame] | 25 | if u_boot_console.config.buildconfig.get('config_cmd_misc', 'n') != 'y': |
| 26 | pytest.skip('sleep command not supported') |
Stephen Warren | 6818820 | 2016-01-15 11:15:31 -0700 | [diff] [blame] | 27 | # 3s isn't too long, but is enough to cross a few second boundaries. |
| 28 | sleep_time = 3 |
| 29 | tstart = time.time() |
| 30 | u_boot_console.run_command('sleep %d' % sleep_time) |
| 31 | tend = time.time() |
| 32 | elapsed = tend - tstart |
Heinrich Schuchardt | e2ecac2 | 2017-10-13 22:28:31 +0200 | [diff] [blame] | 33 | assert elapsed >= (sleep_time - 0.01) |
Stephen Warren | 33db1ee | 2016-02-04 16:11:50 -0700 | [diff] [blame] | 34 | if not u_boot_console.config.gdbserver: |
| 35 | # 0.25s margin is hopefully enough to account for any system overhead. |
| 36 | assert elapsed < (sleep_time + 0.25) |