mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-07 13:27:13 +01:00
9298065cef
CPR has features disabled and PCRE is fully disabled until updated to new code.
15 lines
378 B
Bash
15 lines
378 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -x
|
|
|
|
mkdir tmp
|
|
BUILD_PREFIX=$PWD/tmp
|
|
|
|
source ../../config.sh
|
|
set_config_opts
|
|
|
|
CONFIG_OPTS+=("--enable-code-coverage")
|
|
|
|
# Build, check, and install from local source
|
|
( cd ../..; ./autogen.sh && ./configure "${CONFIG_OPTS[@]}" && make VERBOSE=1 -j5 check-code-coverage CODE_COVERAGE_OUTPUT_FILE=lcov.info CODE_COVERAGE_OUTPUT_DIRECTORY=coverage) || exit 1
|