light/tools/ci/amd64/gcc/unit_tests.sh

42 lines
796 B
Bash
Raw Normal View History

#!/bin/bash
2025-10-16 14:32:48 +03:30
set -euo pipefail
cd "$(git rev-parse --show-toplevel)/"
CC=$(which gcc)
export CC
CXX=$(which g++)
export CXX
DISPLAY=:99
export DISPLAY
2025-09-24 08:38:30 +03:30
Xvfb :99 -screen 0 1024x768x16 &
2025-09-10 14:26:08 +03:30
2025-09-21 14:15:33 +03:30
# gcc uses libstdc++ by default
2025-10-16 14:32:48 +03:30
cmake \
-S . \
-B build \
-G Ninja \
-D CMAKE_LINKER_TYPE=MOLD \
-D ENABLE_UNIT_TESTS=ON \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_CXX_FLAGS="-std=c++23 -g -fno-omit-frame-pointer"
cmake --build ./build -j"$(nproc)"
while IFS= read -r -d '' test; do
echo "Running $test"
gdb \
2025-10-16 14:12:16 +03:30
--return-child-result \
-ex='set confirm off' \
-ex='set pagination off' \
-ex='run' \
-ex='bt full' \
-ex='quit' \
-q \
"$test"
2025-10-16 14:32:48 +03:30
done < <(find ./build -type f -name '*_tests' -executable -print0)