coverage.sh: Announce commands

This commit is contained in:
Sebastian Pipping 2017-05-08 20:20:50 +02:00
parent 8c9de86bef
commit a2ae7cd304

View File

@ -34,8 +34,8 @@ _configure() {
(
set -x
./buildconf.sh
./configure "${configure_args[@]}" "$@"
./buildconf.sh &> configure.log
./configure "${configure_args[@]}" "$@" &>> configure.log
)
}
@ -66,8 +66,9 @@ _run() {
_configure \
CFLAGS="${BASE_FLAGS}" \
CXXFLAGS="${BASE_FLAGS}" &> configure.log
CXXFLAGS="${BASE_FLAGS}"
set -x
make buildlib &> build.log
lcov -c -d "${capture_dir}" -i -o "${coverage_info}-zero" &> run.log