diff options
author | Heinrich Schuchardt | 2020-09-10 12:09:03 +0200 |
---|---|---|
committer | Tom Rini | 2020-09-12 10:53:01 -0400 |
commit | 185440ffc46f310b0f300c10804ba3cb0a7bf15a (patch) | |
tree | 20397adfefbe204c2b348e271c056620f4bcadcc /test | |
parent | 9a97314b5bb815151b48b867455ee428fa394902 (diff) |
test: do no assume hush parser in validate_empty()
The environment variable test uses function validate_empty() to check that
a variable is not defined. If the hush parser is not enabled, we cannot
refer to a variable by $var_name but only by ${var_name}.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Acked-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/py/tests/test_env.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/py/tests/test_env.py b/test/py/tests/test_env.py index 2ae8f25381e..940279651da 100644 --- a/test/py/tests/test_env.py +++ b/test/py/tests/test_env.py @@ -151,7 +151,7 @@ def validate_empty(state_test_env, var): Nothing. """ - response = state_test_env.u_boot_console.run_command('echo $%s' % var) + response = state_test_env.u_boot_console.run_command('echo ${%s}' % var) assert response == '' def validate_set(state_test_env, var, value): |