You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/hyperlight_host/src/sandbox/uninitialized.rs
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1114,6 +1114,12 @@ mod tests {
1114
1114
None,
1115
1115
None,
1116
1116
);
1117
+
println!("{:?}", sbox);
1118
+
#[cfg(target_os = "windows")]
1119
+
assert!(
1120
+
matches!(sbox,Err(e)if e.to_string().contains("GuestBinary not found: 'some/path/that/does/not/exist': The system cannot find the path specified. (os error 3)"))
1121
+
);
1122
+
#[cfg(target_os = "linux")]
1117
1123
assert!(
1118
1124
matches!(sbox,Err(e)if e.to_string().contains("GuestBinary not found: 'some/path/that/does/not/exist': No such file or directory (os error 2)"))
0 commit comments