Stephen Warren | 1c8b4d5 | 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 | |
| 8 | def test_sleep(u_boot_console): |
Stephen Warren | e8debf3 | 2016-01-26 13:41:30 -0700 | [diff] [blame] | 9 | """Test the sleep command, and validate that it sleeps for approximately |
| 10 | the correct amount of time.""" |
Stephen Warren | 1c8b4d5 | 2016-01-15 11:15:31 -0700 | [diff] [blame] | 11 | |
Tom Rini | 2b2c6e5 | 2016-10-14 19:12:31 -0400 | [diff] [blame] | 12 | if u_boot_console.config.buildconfig.get('config_cmd_misc', 'n') != 'y': |
| 13 | pytest.skip('sleep command not supported') |
Stephen Warren | 1c8b4d5 | 2016-01-15 11:15:31 -0700 | [diff] [blame] | 14 | # 3s isn't too long, but is enough to cross a few second boundaries. |
| 15 | sleep_time = 3 |
| 16 | tstart = time.time() |
| 17 | u_boot_console.run_command('sleep %d' % sleep_time) |
| 18 | tend = time.time() |
| 19 | elapsed = tend - tstart |
Stephen Warren | 89ab841 | 2016-02-04 16:11:50 -0700 | [diff] [blame] | 20 | assert elapsed >= sleep_time |
| 21 | if not u_boot_console.config.gdbserver: |
| 22 | # 0.25s margin is hopefully enough to account for any system overhead. |
| 23 | assert elapsed < (sleep_time + 0.25) |