Files
fn_registry/cpp/scripts/run_tests.sh
T

8 lines
306 B
Bash
Executable File

#!/usr/bin/env bash
# Build and run all C++ unit tests via Catch2 + ctest.
set -euo pipefail
ROOT="$(cd "$(dirname "$0")/.." && pwd)"
cmake -S "$ROOT" -B "$ROOT/build" -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=ON
cmake --build "$ROOT/build" -j"$(nproc)"
ctest --test-dir "$ROOT/build" --output-on-failure