fix(vulkan-smoke): harden timeout and ci closure

This commit is contained in:
2026-06-25 08:04:47 +04:00
parent 607a64ca8d
commit b617e2958d
4 changed files with 108 additions and 16 deletions
@@ -51,9 +51,10 @@ where
fn commit(mut self) -> T {
self.rollback.take();
self.value
.take()
.expect("rollback guard must hold a value until commit")
match self.value.take() {
Some(value) => value,
None => unreachable!("rollback guard must hold a value until commit"),
}
}
}