Valerio Setti | f67ded3 | 2024-06-27 08:03:32 +0200 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | # Copyright The Mbed TLS Contributors |
| 4 | # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later |
| 5 | |
| 6 | set -e |
| 7 | |
| 8 | # The server creates some local files when it starts up so we can wait for this |
| 9 | # event as signal that the server is ready so that we can start client(s). |
| 10 | function wait_for_server_startup() { |
Ronald Cron | c04c2ed | 2024-07-22 08:48:17 +0200 | [diff] [blame] | 11 | while [ $(find . -name "psa_notify_*" | wc -l) -eq 0 ]; do |
Valerio Setti | f67ded3 | 2024-06-27 08:03:32 +0200 | [diff] [blame] | 12 | sleep 0.1 |
| 13 | done |
| 14 | } |
| 15 | |
Valerio Setti | f67ded3 | 2024-06-27 08:03:32 +0200 | [diff] [blame] | 16 | $(dirname "$0")/psa_server & |
| 17 | wait_for_server_startup |