summaryrefslogtreecommitdiffhomepage
path: root/test/scripts
diff options
context:
space:
mode:
authorJoakim Hulthe <joakim@hulthe.net>2024-03-12 11:21:19 +0100
committerJoakim Hulthe <joakim@hulthe.net>2024-03-20 16:50:15 +0100
commit6594c6de52763ab313d99edecf9231596a003e1f (patch)
treed7079f9f6775583a0e4da4a061b672372e7af2b3 /test/scripts
parente5487658fb6065f5f41acdc7970235b64641b6bd (diff)
downloadmullvadvpn-6594c6de52763ab313d99edecf9231596a003e1f.tar.xz
mullvadvpn-6594c6de52763ab313d99edecf9231596a003e1f.zip
Test leaking TCP/UDP/ICMP packets in split tunnel
Diffstat (limited to 'test/scripts')
-rwxr-xr-xtest/scripts/build-runner-image.sh2
-rw-r--r--test/scripts/ssh-setup.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/test/scripts/build-runner-image.sh b/test/scripts/build-runner-image.sh
index be0d637323..30252d8445 100755
--- a/test/scripts/build-runner-image.sh
+++ b/test/scripts/build-runner-image.sh
@@ -33,7 +33,7 @@ case $TARGET in
mcopy \
-i "${TEST_RUNNER_IMAGE_PATH}" \
"${SCRIPT_DIR}/../target/$TARGET/release/test-runner.exe" \
- "${SCRIPT_DIR}/../target/$TARGET/release/am-i-mullvad.exe" \
+ "${SCRIPT_DIR}/../target/$TARGET/release/connection-checker.exe" \
"${PACKAGES_DIR}/"*.exe \
"${SCRIPT_DIR}/../openvpn.ca.crt" \
"::"
diff --git a/test/scripts/ssh-setup.sh b/test/scripts/ssh-setup.sh
index a3809e0230..b3d358f5a0 100644
--- a/test/scripts/ssh-setup.sh
+++ b/test/scripts/ssh-setup.sh
@@ -16,7 +16,7 @@ echo "Copying test-runner to $RUNNER_DIR"
mkdir -p "$RUNNER_DIR"
-for file in test-runner $CURRENT_APP $PREVIOUS_APP $UI_RUNNER openvpn.ca.crt; do
+for file in test-runner connection-checker $CURRENT_APP $PREVIOUS_APP $UI_RUNNER openvpn.ca.crt; do
echo "Moving $file to $RUNNER_DIR"
cp -f "$SCRIPT_DIR/$file" "$RUNNER_DIR"
done