diff --git a/rust/gui-client/scripts/crash-handling-smoke-test.bash b/rust/gui-client/scripts/crash-handling-smoke-test.bash deleted file mode 100644 index ad8a5d2fa..000000000 --- a/rust/gui-client/scripts/crash-handling-smoke-test.bash +++ /dev/null @@ -1,16 +0,0 @@ -# This script must run from an elevated shell so that Firezone won't try to elevate - -set -euo pipefail - -BUNDLE_ID="dev.firezone.client" -DUMP_PATH="$LOCALAPPDATA/$BUNDLE_ID/data/logs/last_crash.dmp" - -# Delete the crash file if present -rm -f "$DUMP_PATH" - -# Ignore the exit code, this is supposed to crash -cargo run -p firezone-gui-client -- --crash || true - -# Fail if the crash file wasn't written -stat "$DUMP_PATH" -rm "$DUMP_PATH"