aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2024-02-08 00:31:21 +0100
committerGitHub <[email protected]>2024-02-08 00:31:21 +0100
commit2e15d1371a891cc3456d7b9fd22a68291770df41 (patch)
tree072b85abeb8583533318f14755054b1c05802754
parent2c5426aa5c41563f3b225d99d39793a765ec9204 (diff)
Delete tests/stm32/teleprobe.sh
-rwxr-xr-xtests/stm32/teleprobe.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/stm32/teleprobe.sh b/tests/stm32/teleprobe.sh
deleted file mode 100755
index 6eec6ca93..000000000
--- a/tests/stm32/teleprobe.sh
+++ /dev/null
@@ -1,12 +0,0 @@
1echo Running target=$1 elf=$2
2STATUSCODE=$(
3 curl \
4 -sS \
5 --output /dev/stderr \
6 --write-out "%{http_code}" \
7 -H "Authorization: Bearer $TELEPROBE_TOKEN" \
8 https://teleprobe.embassy.dev/targets/$1/run --data-binary @$2
9)
10echo
11echo HTTP Status code: $STATUSCODE
12test "$STATUSCODE" -eq 200