cmvr-es/test/quic_gateway/run_gateway.sh.in
xtkuang 428ee328de feat: complete QUIC edge integration
Vendor MsQuic with build and install support, add DeviceManager status to configurable heartbeats, and report only enabled devices.

Add the local QUIC gateway, protocol coverage, real MsQuic E2E tests, process smoke tests, and updated integration documentation.
2026-07-24 12:35:04 +08:00

11 lines
326 B
Bash

#!/usr/bin/env bash
set -euo pipefail
cmvr_quic_library_path="@CMVR_QUIC_TEST_LIBRARY_PATH@"
if [[ -n "${LD_LIBRARY_PATH:-}" ]]; then
cmvr_quic_library_path="${cmvr_quic_library_path}:${LD_LIBRARY_PATH}"
fi
export LD_LIBRARY_PATH="${cmvr_quic_library_path}"
exec "@CMAKE_CURRENT_BINARY_DIR@/cmvr_quic_test_gateway" "$@"