summaryrefslogtreecommitdiffstats
path: root/tests/manual/wasm/qwasmwindow/run.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/manual/wasm/qwasmwindow/run.sh')
-rwxr-xr-xtests/manual/wasm/qwasmwindow/run.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/tests/manual/wasm/qwasmwindow/run.sh b/tests/manual/wasm/qwasmwindow/run.sh
deleted file mode 100755
index f6271d6131..0000000000
--- a/tests/manual/wasm/qwasmwindow/run.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#! /bin/bash
-
-# Copyright (C) 2022 The Qt Company Ltd.
-# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
-
-set -m
-
-function removeServer()
-{
- [ -z "$cleanupPid" ] || kill $cleanupPid
-}
-
-trap removeServer EXIT
-
-script_dir=`dirname ${BASH_SOURCE[0]}`
-cd "$script_dir"
-python3 qtwasmserver.py -p 8001 > /dev/null 2>&1 &
-cleanupPid=$!
-
-python3 qwasmwindow.py $@
-
-echo 'Press any key to continue...' >&2
-read -n 1