blob: 8fc284a9249f9d9dbc32fe994db0ddaeeca22d0d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001# SPDX-License-Identifier: GPL-2.0
Stephen Warren10e50632016-01-15 11:15:24 -07002# Copyright (c) 2015 Stephen Warren
3# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
Stephen Warren10e50632016-01-15 11:15:24 -07004
5def test_unknown_command(u_boot_console):
Stephen Warren75e731e2016-01-26 13:41:30 -07006 """Test that executing an unknown command causes U-Boot to print an
7 error."""
Stephen Warren10e50632016-01-15 11:15:24 -07008
9 # The "unknown command" error is actively expected here,
10 # so error detection for it is disabled.
11 with u_boot_console.disable_check('unknown_command'):
12 response = u_boot_console.run_command('non_existent_cmd')
13 assert('Unknown command \'non_existent_cmd\' - try \'help\'' in response)