Changeset 44323c0 in mod_gnutls
- Timestamp:
- Jun 27, 2020, 3:42:00 AM (2 years ago)
- Branches:
- asyncio, master
- Children:
- e2c0c62
- Parents:
- 15f2849
- Location:
- test
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
test/.gitignore
r15f2849 r44323c0 8 8 __pycache__/ 9 9 README.html 10 coverage/ 10 11 11 12 # generated X.509 data -
test/Makefile.am
r15f2849 r44323c0 237 237 if ENABLE_COVERAGE 238 238 coverage_raw_dir = outputs/coverage 239 coverage_out = coverage 239 240 MOSTLYCLEANFILES += $(coverage_raw_dir)/* 240 241 endif … … 257 258 if ENABLE_COVERAGE 258 259 -rmdir $(coverage_raw_dir) || true 260 -rm -rf $(coverage_out) || true 259 261 endif 260 262 -rmdir $(extra_dirs) || true … … 364 366 if ENABLE_COVERAGE 365 367 AM_TESTS_ENVIRONMENT += export LLVM_PROFILE_FILE="$(coverage_raw_dir)/%p-%3m.profraw"; 368 369 outputs/coverage.profdata: $(coverage_raw_dir)/*.profraw 370 llvm-profdata merge -sparse $^ -o $@ 371 372 coverage/index.html: outputs/coverage.profdata 373 llvm-cov show ../src/.libs/mod_gnutls.so -instr-profile=$< -format=html $(srcdir)/../src/*.c $(srcdir)/../src/*.h $(srcdir)/../include/*.h -output-dir=$(dir $@)/ 374 375 coverage: coverage/index.html 366 376 endif 367 377
Note: See TracChangeset
for help on using the changeset viewer.