mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-13 07:31:57 +00:00
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>
6 lines
139 B
Bash
Executable File
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;
|