diff --git a/test/agent/tools/make-account-archive b/test/agent/tools/make-account-archive
deleted file mode 100755
index 982a940377a33b972dc5333650974ea866dc7f39..0000000000000000000000000000000000000000
--- a/test/agent/tools/make-account-archive
+++ /dev/null
@@ -1,25 +0,0 @@
-#!/bin/sh
-
-tmp=$(mktemp --directory)
-
-export XDG_CONFIG_HOME=$tmp
-export XDG_CACHE_HOME=$tmp
-export XDG_DATA_HOME=$tmp
-
-archive=$1
-
-inputs=$(mktemp --suffix=.scm)
-outputs=$(mktemp)
-
-cat -> "$inputs" <<EOF
-(agent:ensure-account)
-(agent->archive "${archive}")
-EOF
-
-JAMI_LOG_FILE="$outputs" ./agent "$inputs"
-
-grep AGENT "$outputs"
-
-rm "$inputs"
-rm "$outputs"
-rm -rf "$tmp"