We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d314651 commit c0b817eCopy full SHA for c0b817e
uefi-test-runner/src/proto/shell.rs
@@ -10,6 +10,7 @@ pub fn test_env(shell: &ScopedProtocol<Shell>) {
10
/* Test retrieving list of environment variable names */
11
let mut cur_env_vec = shell.get_envs();
12
assert_eq!(cur_env_vec.next().unwrap(), cstr16!("path"),);
13
+ // check pre-defined shell variables; see UEFI Shell spec
14
assert_eq!(cur_env_vec.next().unwrap(), cstr16!("nonesting"),);
15
let cur_env_vec = shell.get_envs();
16
let default_len = cur_env_vec.count();
0 commit comments