zephyr/scripts/waitpid
Andrew Boie 495d922406 xt-run: fix sanitycheck communication
Sanitycheck actually creates the pipes, using a naming convention imposed
by QEMU. We also need to leave a PID file.
'xt-run' Make target removed, we don't need it.

Change-Id: Ie9fd9dbb1327eb4b10424e7ee5d2f4dc09b121a4
Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
2017-02-13 08:04:27 -08:00

6 lines
139 B
Bash
Executable File

#!/bin/bash
# Copyright (c) 2017 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
while kill -0 $1 2> /dev/null; do sleep 1; done;