Skip to content

Commit c0b817e

Browse files
RenTrieuphip1611
andauthored
uefi-test-runner: Add clarifying comment for nonesting shell variable
Co-authored-by: Philipp Schuster <[email protected]>
1 parent d314651 commit c0b817e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

uefi-test-runner/src/proto/shell.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ pub fn test_env(shell: &ScopedProtocol<Shell>) {
1010
/* Test retrieving list of environment variable names */
1111
let mut cur_env_vec = shell.get_envs();
1212
assert_eq!(cur_env_vec.next().unwrap(), cstr16!("path"),);
13+
// check pre-defined shell variables; see UEFI Shell spec
1314
assert_eq!(cur_env_vec.next().unwrap(), cstr16!("nonesting"),);
1415
let cur_env_vec = shell.get_envs();
1516
let default_len = cur_env_vec.count();

0 commit comments

Comments
 (0)