summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJoakim Hulthe <joakim.hulthe@mullvad.net>2026-04-07 11:37:09 +0200
committerJoakim Hulthe <joakim.hulthe@mullvad.net>2026-04-07 11:38:45 +0200
commite9feccf39a342a9449489f304bc5c6324de5efbb (patch)
treef278bee7a903c9a06bde06ce2cc3da5efa870fd0
parent322e129e92bdb63f5e444b25b762ce46d9bf4c92 (diff)
downloadmullvadvpn-log-failure-reason-in-test-detect-app-removal.tar.xz
mullvadvpn-log-failure-reason-in-test-detect-app-removal.zip
Log failure reason in test_detect_app_removallog-failure-reason-in-test-detect-app-removal
-rw-r--r--test/test-manager/src/tests/install.rs6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/test-manager/src/tests/install.rs b/test/test-manager/src/tests/install.rs
index 3135d4ba56..df30cab0af 100644
--- a/test/test-manager/src/tests/install.rs
+++ b/test/test-manager/src/tests/install.rs
@@ -288,7 +288,11 @@ pub async fn test_detect_app_removal(
attempt += 1;
if attempt == MAX_ATTEMPTS {
- bail!("Uninstall script didn't run when app was removed");
+ log::error!("App traces found: {app_traces:?}");
+ bail!(
+ "Uninstall script didn't run when app was removed ({} Files remain).",
+ app_traces.len()
+ );
}
tokio::time::sleep(Duration::from_secs(1)).await;