Unit tests working on generated projects

This commit is contained in:
Eric Ratliff
2026-02-18 21:00:24 -06:00
parent c41776df22
commit eee2f690da
3 changed files with 23 additions and 19 deletions

View File

@@ -50,7 +50,7 @@ if [[ $DO_CLEAN -eq 1 ]] && [[ -d "$BUILD_DIR" ]]; then
fi
if [[ ! -f "$BUILD_DIR/CMakeCache.txt" ]]; then
info "Configuring (first run will fetch Google Test)..."
info "Configuring test build. First run will fetch Google Test..."
cmake -S "$SCRIPT_DIR" -B "$BUILD_DIR" -DCMAKE_BUILD_TYPE=Debug
fi
@@ -70,4 +70,4 @@ if ctest "${CTEST_ARGS[@]}"; then
else
echo ""
die "Some tests failed."
fi
fi