96e43786创建于 2024年6月5日历史提交
# Execute unit tests without relying on Bazel.
if [ "$KUBEVIRT_NO_BAZEL" = true ]; then
    sleep infinity
else
    BAZEL_PID=$(bazel info | grep server_pid | cut -d " " -f 2)
    while kill -0 $BAZEL_PID 2>/dev/null; do sleep 1; done
    # Might not be necessary, just to be sure that exec shutdowns always succeed
    # and are not killed by docker.
    sleep 1
fi