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 8cfeedc commit 507ed36Copy full SHA for 507ed36
uefi-test-runner/src/proto/network/snp.rs
@@ -254,6 +254,10 @@ pub fn test() {
254
}
255
256
257
- simple_network.stop().unwrap();
+ // Workaround for OVMF firmware. `stop()` works in CI on x86_64, but not
258
+ // x86 or aarch64.
259
+ if simple_network.mode().state == NetworkState::STARTED {
260
+ simple_network.stop().unwrap();
261
+ }
262
simple_network.shutdown().unwrap();
263
0 commit comments