summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--test/test-manager/src/main.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/test-manager/src/main.rs b/test/test-manager/src/main.rs
index 53fbcfd28b..0c8049c47d 100644
--- a/test/test-manager/src/main.rs
+++ b/test/test-manager/src/main.rs
@@ -411,8 +411,9 @@ async fn inner_main() -> Result<()> {
.await
.context("Tests failed");
- instance.wait().await;
-
+ if display {
+ instance.wait().await;
+ }
socks.close();
// Propagate any error from the test run if applicable
result?.anyhow()