scripts: remove unused waitpid script

Was used previously by sanitycheck, not being used anymore.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2019-08-28 10:58:15 -04:00
commit ba696c0354

View file

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