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.
11 lines
326 B
Bash
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" "$@"
|