├── .editorconfig ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ ├── codespell.yml │ └── run_test_suite.yml ├── .gitignore ├── .perltidyrc ├── CONTRIBUTING ├── COPYING ├── Makefile ├── README ├── bin ├── checkstyle.sh ├── copy_dates.sh ├── fix.pl ├── gendesc ├── genhtml ├── geninfo ├── genpng ├── get_changes.sh ├── get_version.sh ├── lcov ├── llvm2lcov ├── perl2lcov ├── py2lcov ├── xml2lcov └── xml2lcovutil.py ├── example ├── Makefile ├── README ├── descriptions.txt ├── example.c ├── example_mod.c ├── gauss.h ├── iterate.h └── methods │ ├── gauss.c │ ├── iterate.c │ └── iterate_mod.c ├── lcovrc ├── lib └── lcovutil.pm ├── man ├── gendesc.1 ├── genhtml.1 ├── geninfo.1 ├── genpng.1 ├── lcov.1 └── lcovrc.5 ├── rpm └── lcov.spec ├── scripts ├── P4version.pm ├── analyzeInfoFiles ├── annotateutil.pm ├── batchGitVersion.pm ├── context.pm ├── criteria ├── criteria.pm ├── get_signature ├── getp4version ├── gitblame ├── gitblame.pm ├── gitdiff ├── gitversion ├── gitversion.pm ├── p4annotate ├── p4annotate.pm ├── p4udiff ├── select.pm ├── simplify.pm ├── spreadsheet.py └── threshold.pm └── tests ├── Makefile ├── README.md ├── bin ├── check_counts ├── checkdeps ├── cleantests ├── common ├── mkinfo ├── norminfo ├── runtests ├── test_run ├── test_skip ├── testsuite_exit └── testsuite_init ├── common.mak ├── common.tst ├── gendiffcov ├── Makefile ├── errs │ ├── Makefile │ ├── MsgContext.pm │ ├── genError.pm │ ├── mcdc_errs.dat │ ├── missingRestore.pm │ ├── msgtest.sh │ ├── parallelFail.pm │ └── select.sh ├── filter │ ├── Makefile │ ├── brace.c │ ├── brace.info │ ├── expr1.c │ ├── expr2.c │ ├── expr3.c │ ├── expr4.c │ ├── filter.pl │ ├── multilineTrivial.c │ ├── multilineTrivial2.c │ ├── notTrivial1.c │ ├── notTrivial2.c │ ├── notTrivial3.c │ ├── notTrivial_init.c │ ├── notTrivial_multiline.c │ ├── trivial1.c │ ├── trivial2.c │ ├── trivial3.c │ └── trivialMethod.c ├── function │ ├── Makefile │ ├── baseline_call_current_call.gold │ ├── baseline_call_current_call_region.gold │ ├── baseline_call_current_nocall.gold │ ├── baseline_call_current_nocall_region.gold │ ├── baseline_nocall_current_call.gold │ ├── baseline_nocall_current_call_region.gold │ ├── baseline_nocall_current_nocall.gold │ ├── baseline_nocall_current_nocall_region.gold │ ├── current.cpp │ ├── function.sh │ ├── initial.cpp │ └── template.cpp ├── insensitive │ ├── Makefile │ ├── annotate.sh │ ├── insensitive.sh │ └── version.sh ├── simple │ ├── Makefile │ ├── annotate.sh │ ├── script.sh │ ├── simple.cpp │ ├── simple2.cpp │ └── simple2.cpp.annotated └── synthesize │ ├── Makefile │ ├── munge.pl │ ├── munge2.pl │ └── synthesize.sh ├── genhtml ├── Makefile ├── demangle.sh ├── full.sh ├── lambda │ ├── Makefile │ ├── lambda.cpp │ └── lambda.sh ├── mycppfilt.sh ├── part1.sh ├── part2.sh ├── relative │ ├── Makefile │ ├── relative.info │ └── relative.sh ├── target.sh └── zero.sh ├── lcov ├── Makefile ├── add │ ├── Makefile │ ├── concatenated4.sh │ ├── full.sh │ ├── full2.sh │ ├── helper.sh │ ├── part.sh │ ├── part2.sh │ ├── prune.sh │ ├── track.sh │ ├── zero.sh │ └── zero2.sh ├── branch │ ├── Makefile │ ├── branch.cpp │ └── branch.sh ├── demangle │ ├── Makefile │ ├── demangle.cpp │ ├── demangle.sh │ ├── simplify.cmd │ └── simplify.pl ├── errs │ ├── Makefile │ ├── badBranchLine.info │ ├── badFncEndLine.info │ ├── badFncLine.info │ ├── badLine.info │ ├── branchNoLine.info │ ├── emptyFileRecord.info │ ├── errs.sh │ ├── exceptionBranch1.info │ ├── exceptionBranch2.info │ ├── fncMismatch.info │ ├── funcNoLine.info │ ├── lineNoBranch.info │ ├── lineNoFunc.info │ └── noFunc.info ├── exception │ ├── Makefile │ ├── example.data │ ├── exception.cpp │ └── exception.sh ├── extract │ ├── Makefile │ ├── brokenCallback.pm │ ├── envErr.rc │ ├── envVar.rc │ ├── extract.cpp │ ├── extract.sh │ ├── fakeResolve.sh │ ├── list.gold │ ├── list_mcdc.gold │ ├── testContext.sh │ └── unused.c ├── follow │ ├── Makefile │ └── follow.sh ├── format │ ├── Makefile │ ├── format.info │ └── format.sh ├── gcov-tool │ ├── Makefile │ ├── mygcov.sh │ ├── path.sh │ └── test.c ├── initializer │ ├── Makefile │ ├── initializer.cpp │ └── initializer.sh ├── lambda │ ├── Makefile │ ├── lambda.dat │ ├── lambda.sh │ └── lambda2.dat ├── mcdc │ ├── Makefile │ ├── main.cpp │ ├── mcdc.sh │ └── test.cpp ├── merge │ ├── Makefile │ ├── a.dat │ ├── a.info │ ├── a_subtract_b.gold │ ├── b.dat │ ├── b.info │ ├── b_subtract_a.gold │ ├── functionBug_1.dat │ ├── functionBug_2.dat │ ├── intersect.gold │ ├── mcdc.dat │ └── merge.sh ├── misc │ ├── Makefile │ ├── help.sh │ └── version.sh ├── multiple │ ├── Makefile │ └── multiple.sh └── summary │ ├── Makefile │ ├── concatenated.sh │ ├── concatenated2.sh │ ├── full.sh │ ├── part1.sh │ ├── part2.sh │ ├── target.sh │ └── zero.sh ├── lcovrc ├── llvm2lcov ├── Makefile ├── llvm2lcov.sh ├── main.cpp └── test.h ├── perl2lcov ├── Makefile ├── example.pl └── perltest1.sh ├── profiles ├── large ├── medium └── small ├── py2lcov ├── Makefile ├── localmodule.py ├── py2lcov.sh └── test.py └── xml2lcov ├── Makefile ├── coverage.xml └── xml2lcov.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codespell.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/.github/workflows/codespell.yml -------------------------------------------------------------------------------- /.github/workflows/run_test_suite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/.github/workflows/run_test_suite.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/.gitignore -------------------------------------------------------------------------------- /.perltidyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/.perltidyrc -------------------------------------------------------------------------------- /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/README -------------------------------------------------------------------------------- /bin/checkstyle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/bin/checkstyle.sh -------------------------------------------------------------------------------- /bin/copy_dates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/bin/copy_dates.sh -------------------------------------------------------------------------------- /bin/fix.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/bin/fix.pl -------------------------------------------------------------------------------- /bin/gendesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/bin/gendesc -------------------------------------------------------------------------------- /bin/genhtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/bin/genhtml -------------------------------------------------------------------------------- /bin/geninfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/bin/geninfo -------------------------------------------------------------------------------- /bin/genpng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/bin/genpng -------------------------------------------------------------------------------- /bin/get_changes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/bin/get_changes.sh -------------------------------------------------------------------------------- /bin/get_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/bin/get_version.sh -------------------------------------------------------------------------------- /bin/lcov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/bin/lcov -------------------------------------------------------------------------------- /bin/llvm2lcov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/bin/llvm2lcov -------------------------------------------------------------------------------- /bin/perl2lcov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/bin/perl2lcov -------------------------------------------------------------------------------- /bin/py2lcov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/bin/py2lcov -------------------------------------------------------------------------------- /bin/xml2lcov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/bin/xml2lcov -------------------------------------------------------------------------------- /bin/xml2lcovutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/bin/xml2lcovutil.py -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/example/README -------------------------------------------------------------------------------- /example/descriptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/example/descriptions.txt -------------------------------------------------------------------------------- /example/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/example/example.c -------------------------------------------------------------------------------- /example/example_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/example/example_mod.c -------------------------------------------------------------------------------- /example/gauss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/example/gauss.h -------------------------------------------------------------------------------- /example/iterate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/example/iterate.h -------------------------------------------------------------------------------- /example/methods/gauss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/example/methods/gauss.c -------------------------------------------------------------------------------- /example/methods/iterate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/example/methods/iterate.c -------------------------------------------------------------------------------- /example/methods/iterate_mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/example/methods/iterate_mod.c -------------------------------------------------------------------------------- /lcovrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/lcovrc -------------------------------------------------------------------------------- /lib/lcovutil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/lib/lcovutil.pm -------------------------------------------------------------------------------- /man/gendesc.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/man/gendesc.1 -------------------------------------------------------------------------------- /man/genhtml.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/man/genhtml.1 -------------------------------------------------------------------------------- /man/geninfo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/man/geninfo.1 -------------------------------------------------------------------------------- /man/genpng.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/man/genpng.1 -------------------------------------------------------------------------------- /man/lcov.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/man/lcov.1 -------------------------------------------------------------------------------- /man/lcovrc.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/man/lcovrc.5 -------------------------------------------------------------------------------- /rpm/lcov.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/rpm/lcov.spec -------------------------------------------------------------------------------- /scripts/P4version.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/P4version.pm -------------------------------------------------------------------------------- /scripts/analyzeInfoFiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/analyzeInfoFiles -------------------------------------------------------------------------------- /scripts/annotateutil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/annotateutil.pm -------------------------------------------------------------------------------- /scripts/batchGitVersion.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/batchGitVersion.pm -------------------------------------------------------------------------------- /scripts/context.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/context.pm -------------------------------------------------------------------------------- /scripts/criteria: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/criteria -------------------------------------------------------------------------------- /scripts/criteria.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/criteria.pm -------------------------------------------------------------------------------- /scripts/get_signature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/get_signature -------------------------------------------------------------------------------- /scripts/getp4version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/getp4version -------------------------------------------------------------------------------- /scripts/gitblame: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/gitblame -------------------------------------------------------------------------------- /scripts/gitblame.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/gitblame.pm -------------------------------------------------------------------------------- /scripts/gitdiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/gitdiff -------------------------------------------------------------------------------- /scripts/gitversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/gitversion -------------------------------------------------------------------------------- /scripts/gitversion.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/gitversion.pm -------------------------------------------------------------------------------- /scripts/p4annotate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/p4annotate -------------------------------------------------------------------------------- /scripts/p4annotate.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/p4annotate.pm -------------------------------------------------------------------------------- /scripts/p4udiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/p4udiff -------------------------------------------------------------------------------- /scripts/select.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/select.pm -------------------------------------------------------------------------------- /scripts/simplify.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/simplify.pm -------------------------------------------------------------------------------- /scripts/spreadsheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/spreadsheet.py -------------------------------------------------------------------------------- /scripts/threshold.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/scripts/threshold.pm -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/bin/check_counts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/bin/check_counts -------------------------------------------------------------------------------- /tests/bin/checkdeps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/bin/checkdeps -------------------------------------------------------------------------------- /tests/bin/cleantests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/bin/cleantests -------------------------------------------------------------------------------- /tests/bin/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/bin/common -------------------------------------------------------------------------------- /tests/bin/mkinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/bin/mkinfo -------------------------------------------------------------------------------- /tests/bin/norminfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/bin/norminfo -------------------------------------------------------------------------------- /tests/bin/runtests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/bin/runtests -------------------------------------------------------------------------------- /tests/bin/test_run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/bin/test_run -------------------------------------------------------------------------------- /tests/bin/test_skip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/bin/test_skip -------------------------------------------------------------------------------- /tests/bin/testsuite_exit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/bin/testsuite_exit -------------------------------------------------------------------------------- /tests/bin/testsuite_init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/bin/testsuite_init -------------------------------------------------------------------------------- /tests/common.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/common.mak -------------------------------------------------------------------------------- /tests/common.tst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/common.tst -------------------------------------------------------------------------------- /tests/gendiffcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/Makefile -------------------------------------------------------------------------------- /tests/gendiffcov/errs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/errs/Makefile -------------------------------------------------------------------------------- /tests/gendiffcov/errs/MsgContext.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/errs/MsgContext.pm -------------------------------------------------------------------------------- /tests/gendiffcov/errs/genError.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/errs/genError.pm -------------------------------------------------------------------------------- /tests/gendiffcov/errs/mcdc_errs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/errs/mcdc_errs.dat -------------------------------------------------------------------------------- /tests/gendiffcov/errs/missingRestore.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/errs/missingRestore.pm -------------------------------------------------------------------------------- /tests/gendiffcov/errs/msgtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/errs/msgtest.sh -------------------------------------------------------------------------------- /tests/gendiffcov/errs/parallelFail.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/errs/parallelFail.pm -------------------------------------------------------------------------------- /tests/gendiffcov/errs/select.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/bash 2 | 3 | #echo "$@_" >> x.log 4 | exit 1 5 | -------------------------------------------------------------------------------- /tests/gendiffcov/filter/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/filter/Makefile -------------------------------------------------------------------------------- /tests/gendiffcov/filter/brace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/filter/brace.c -------------------------------------------------------------------------------- /tests/gendiffcov/filter/brace.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/filter/brace.info -------------------------------------------------------------------------------- /tests/gendiffcov/filter/expr1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/filter/expr1.c -------------------------------------------------------------------------------- /tests/gendiffcov/filter/expr2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/filter/expr2.c -------------------------------------------------------------------------------- /tests/gendiffcov/filter/expr3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/filter/expr3.c -------------------------------------------------------------------------------- /tests/gendiffcov/filter/expr4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/filter/expr4.c -------------------------------------------------------------------------------- /tests/gendiffcov/filter/filter.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/filter/filter.pl -------------------------------------------------------------------------------- /tests/gendiffcov/filter/multilineTrivial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/filter/multilineTrivial.c -------------------------------------------------------------------------------- /tests/gendiffcov/filter/multilineTrivial2.c: -------------------------------------------------------------------------------- 1 | void x() { 2 | 3 | ; 4 | } 5 | -------------------------------------------------------------------------------- /tests/gendiffcov/filter/notTrivial1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/filter/notTrivial1.c -------------------------------------------------------------------------------- /tests/gendiffcov/filter/notTrivial2.c: -------------------------------------------------------------------------------- 1 | void containsCode() { a; 2 | }; 3 | -------------------------------------------------------------------------------- /tests/gendiffcov/filter/notTrivial3.c: -------------------------------------------------------------------------------- 1 | ;} // doesn't match regexp 2 | -------------------------------------------------------------------------------- /tests/gendiffcov/filter/notTrivial_init.c: -------------------------------------------------------------------------------- 1 | Data::Data(int a) 2 | : Base(a) { 3 | } 4 | -------------------------------------------------------------------------------- /tests/gendiffcov/filter/notTrivial_multiline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/filter/notTrivial_multiline.c -------------------------------------------------------------------------------- /tests/gendiffcov/filter/trivial1.c: -------------------------------------------------------------------------------- 1 | void trivial() { /* comment */} 2 | -------------------------------------------------------------------------------- /tests/gendiffcov/filter/trivial2.c: -------------------------------------------------------------------------------- 1 | int trivial(unsigned abc) {}; 2 | -------------------------------------------------------------------------------- /tests/gendiffcov/filter/trivial3.c: -------------------------------------------------------------------------------- 1 | }; // simulate end of class decl 2 | -------------------------------------------------------------------------------- /tests/gendiffcov/filter/trivialMethod.c: -------------------------------------------------------------------------------- 1 | Data::Data(int a) { 2 | // nothing here 3 | } 4 | -------------------------------------------------------------------------------- /tests/gendiffcov/function/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/function/Makefile -------------------------------------------------------------------------------- /tests/gendiffcov/function/baseline_call_current_call.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/function/baseline_call_current_call.gold -------------------------------------------------------------------------------- /tests/gendiffcov/function/baseline_call_current_call_region.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/function/baseline_call_current_call_region.gold -------------------------------------------------------------------------------- /tests/gendiffcov/function/baseline_call_current_nocall.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/function/baseline_call_current_nocall.gold -------------------------------------------------------------------------------- /tests/gendiffcov/function/baseline_call_current_nocall_region.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/function/baseline_call_current_nocall_region.gold -------------------------------------------------------------------------------- /tests/gendiffcov/function/baseline_nocall_current_call.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/function/baseline_nocall_current_call.gold -------------------------------------------------------------------------------- /tests/gendiffcov/function/baseline_nocall_current_call_region.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/function/baseline_nocall_current_call_region.gold -------------------------------------------------------------------------------- /tests/gendiffcov/function/baseline_nocall_current_nocall.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/function/baseline_nocall_current_nocall.gold -------------------------------------------------------------------------------- /tests/gendiffcov/function/baseline_nocall_current_nocall_region.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/function/baseline_nocall_current_nocall_region.gold -------------------------------------------------------------------------------- /tests/gendiffcov/function/current.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/function/current.cpp -------------------------------------------------------------------------------- /tests/gendiffcov/function/function.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/function/function.sh -------------------------------------------------------------------------------- /tests/gendiffcov/function/initial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/function/initial.cpp -------------------------------------------------------------------------------- /tests/gendiffcov/function/template.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/function/template.cpp -------------------------------------------------------------------------------- /tests/gendiffcov/insensitive/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/insensitive/Makefile -------------------------------------------------------------------------------- /tests/gendiffcov/insensitive/annotate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/insensitive/annotate.sh -------------------------------------------------------------------------------- /tests/gendiffcov/insensitive/insensitive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/insensitive/insensitive.sh -------------------------------------------------------------------------------- /tests/gendiffcov/insensitive/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/insensitive/version.sh -------------------------------------------------------------------------------- /tests/gendiffcov/simple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/simple/Makefile -------------------------------------------------------------------------------- /tests/gendiffcov/simple/annotate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/simple/annotate.sh -------------------------------------------------------------------------------- /tests/gendiffcov/simple/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/simple/script.sh -------------------------------------------------------------------------------- /tests/gendiffcov/simple/simple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/simple/simple.cpp -------------------------------------------------------------------------------- /tests/gendiffcov/simple/simple2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/simple/simple2.cpp -------------------------------------------------------------------------------- /tests/gendiffcov/simple/simple2.cpp.annotated: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/simple/simple2.cpp.annotated -------------------------------------------------------------------------------- /tests/gendiffcov/synthesize/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/synthesize/Makefile -------------------------------------------------------------------------------- /tests/gendiffcov/synthesize/munge.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/synthesize/munge.pl -------------------------------------------------------------------------------- /tests/gendiffcov/synthesize/munge2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/synthesize/munge2.pl -------------------------------------------------------------------------------- /tests/gendiffcov/synthesize/synthesize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/gendiffcov/synthesize/synthesize.sh -------------------------------------------------------------------------------- /tests/genhtml/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/genhtml/Makefile -------------------------------------------------------------------------------- /tests/genhtml/demangle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/genhtml/demangle.sh -------------------------------------------------------------------------------- /tests/genhtml/full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/genhtml/full.sh -------------------------------------------------------------------------------- /tests/genhtml/lambda/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/genhtml/lambda/Makefile -------------------------------------------------------------------------------- /tests/genhtml/lambda/lambda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/genhtml/lambda/lambda.cpp -------------------------------------------------------------------------------- /tests/genhtml/lambda/lambda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/genhtml/lambda/lambda.sh -------------------------------------------------------------------------------- /tests/genhtml/mycppfilt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/genhtml/mycppfilt.sh -------------------------------------------------------------------------------- /tests/genhtml/part1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/genhtml/part1.sh -------------------------------------------------------------------------------- /tests/genhtml/part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/genhtml/part2.sh -------------------------------------------------------------------------------- /tests/genhtml/relative/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/genhtml/relative/Makefile -------------------------------------------------------------------------------- /tests/genhtml/relative/relative.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/genhtml/relative/relative.info -------------------------------------------------------------------------------- /tests/genhtml/relative/relative.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/genhtml/relative/relative.sh -------------------------------------------------------------------------------- /tests/genhtml/target.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/genhtml/target.sh -------------------------------------------------------------------------------- /tests/genhtml/zero.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/genhtml/zero.sh -------------------------------------------------------------------------------- /tests/lcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/Makefile -------------------------------------------------------------------------------- /tests/lcov/add/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/add/Makefile -------------------------------------------------------------------------------- /tests/lcov/add/concatenated4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/add/concatenated4.sh -------------------------------------------------------------------------------- /tests/lcov/add/full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/add/full.sh -------------------------------------------------------------------------------- /tests/lcov/add/full2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/add/full2.sh -------------------------------------------------------------------------------- /tests/lcov/add/helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/add/helper.sh -------------------------------------------------------------------------------- /tests/lcov/add/part.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/add/part.sh -------------------------------------------------------------------------------- /tests/lcov/add/part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/add/part2.sh -------------------------------------------------------------------------------- /tests/lcov/add/prune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/add/prune.sh -------------------------------------------------------------------------------- /tests/lcov/add/track.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/add/track.sh -------------------------------------------------------------------------------- /tests/lcov/add/zero.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/add/zero.sh -------------------------------------------------------------------------------- /tests/lcov/add/zero2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/add/zero2.sh -------------------------------------------------------------------------------- /tests/lcov/branch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/branch/Makefile -------------------------------------------------------------------------------- /tests/lcov/branch/branch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/branch/branch.cpp -------------------------------------------------------------------------------- /tests/lcov/branch/branch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/branch/branch.sh -------------------------------------------------------------------------------- /tests/lcov/demangle/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/demangle/Makefile -------------------------------------------------------------------------------- /tests/lcov/demangle/demangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/demangle/demangle.cpp -------------------------------------------------------------------------------- /tests/lcov/demangle/demangle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/demangle/demangle.sh -------------------------------------------------------------------------------- /tests/lcov/demangle/simplify.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/demangle/simplify.cmd -------------------------------------------------------------------------------- /tests/lcov/demangle/simplify.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/demangle/simplify.pl -------------------------------------------------------------------------------- /tests/lcov/errs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/errs/Makefile -------------------------------------------------------------------------------- /tests/lcov/errs/badBranchLine.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/errs/badBranchLine.info -------------------------------------------------------------------------------- /tests/lcov/errs/badFncEndLine.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/errs/badFncEndLine.info -------------------------------------------------------------------------------- /tests/lcov/errs/badFncLine.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/errs/badFncLine.info -------------------------------------------------------------------------------- /tests/lcov/errs/badLine.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/errs/badLine.info -------------------------------------------------------------------------------- /tests/lcov/errs/branchNoLine.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/errs/branchNoLine.info -------------------------------------------------------------------------------- /tests/lcov/errs/emptyFileRecord.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/errs/emptyFileRecord.info -------------------------------------------------------------------------------- /tests/lcov/errs/errs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/errs/errs.sh -------------------------------------------------------------------------------- /tests/lcov/errs/exceptionBranch1.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/errs/exceptionBranch1.info -------------------------------------------------------------------------------- /tests/lcov/errs/exceptionBranch2.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/errs/exceptionBranch2.info -------------------------------------------------------------------------------- /tests/lcov/errs/fncMismatch.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/errs/fncMismatch.info -------------------------------------------------------------------------------- /tests/lcov/errs/funcNoLine.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/errs/funcNoLine.info -------------------------------------------------------------------------------- /tests/lcov/errs/lineNoBranch.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/errs/lineNoBranch.info -------------------------------------------------------------------------------- /tests/lcov/errs/lineNoFunc.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/errs/lineNoFunc.info -------------------------------------------------------------------------------- /tests/lcov/errs/noFunc.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/errs/noFunc.info -------------------------------------------------------------------------------- /tests/lcov/exception/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/exception/Makefile -------------------------------------------------------------------------------- /tests/lcov/exception/example.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/exception/example.data -------------------------------------------------------------------------------- /tests/lcov/exception/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/exception/exception.cpp -------------------------------------------------------------------------------- /tests/lcov/exception/exception.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/exception/exception.sh -------------------------------------------------------------------------------- /tests/lcov/extract/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/extract/Makefile -------------------------------------------------------------------------------- /tests/lcov/extract/brokenCallback.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/extract/brokenCallback.pm -------------------------------------------------------------------------------- /tests/lcov/extract/envErr.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/extract/envErr.rc -------------------------------------------------------------------------------- /tests/lcov/extract/envVar.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/extract/envVar.rc -------------------------------------------------------------------------------- /tests/lcov/extract/extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/extract/extract.cpp -------------------------------------------------------------------------------- /tests/lcov/extract/extract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/extract/extract.sh -------------------------------------------------------------------------------- /tests/lcov/extract/fakeResolve.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo $1 3 | -------------------------------------------------------------------------------- /tests/lcov/extract/list.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/extract/list.gold -------------------------------------------------------------------------------- /tests/lcov/extract/list_mcdc.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/extract/list_mcdc.gold -------------------------------------------------------------------------------- /tests/lcov/extract/testContext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/extract/testContext.sh -------------------------------------------------------------------------------- /tests/lcov/extract/unused.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/extract/unused.c -------------------------------------------------------------------------------- /tests/lcov/follow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/follow/Makefile -------------------------------------------------------------------------------- /tests/lcov/follow/follow.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/follow/follow.sh -------------------------------------------------------------------------------- /tests/lcov/format/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/format/Makefile -------------------------------------------------------------------------------- /tests/lcov/format/format.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/format/format.info -------------------------------------------------------------------------------- /tests/lcov/format/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/format/format.sh -------------------------------------------------------------------------------- /tests/lcov/gcov-tool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/gcov-tool/Makefile -------------------------------------------------------------------------------- /tests/lcov/gcov-tool/mygcov.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exec gcov "$@" 4 | -------------------------------------------------------------------------------- /tests/lcov/gcov-tool/path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/gcov-tool/path.sh -------------------------------------------------------------------------------- /tests/lcov/gcov-tool/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/gcov-tool/test.c -------------------------------------------------------------------------------- /tests/lcov/initializer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/initializer/Makefile -------------------------------------------------------------------------------- /tests/lcov/initializer/initializer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/initializer/initializer.cpp -------------------------------------------------------------------------------- /tests/lcov/initializer/initializer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/initializer/initializer.sh -------------------------------------------------------------------------------- /tests/lcov/lambda/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/lambda/Makefile -------------------------------------------------------------------------------- /tests/lcov/lambda/lambda.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/lambda/lambda.dat -------------------------------------------------------------------------------- /tests/lcov/lambda/lambda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/lambda/lambda.sh -------------------------------------------------------------------------------- /tests/lcov/lambda/lambda2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/lambda/lambda2.dat -------------------------------------------------------------------------------- /tests/lcov/mcdc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/mcdc/Makefile -------------------------------------------------------------------------------- /tests/lcov/mcdc/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/mcdc/main.cpp -------------------------------------------------------------------------------- /tests/lcov/mcdc/mcdc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/mcdc/mcdc.sh -------------------------------------------------------------------------------- /tests/lcov/mcdc/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/mcdc/test.cpp -------------------------------------------------------------------------------- /tests/lcov/merge/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/merge/Makefile -------------------------------------------------------------------------------- /tests/lcov/merge/a.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/merge/a.dat -------------------------------------------------------------------------------- /tests/lcov/merge/a.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/merge/a.info -------------------------------------------------------------------------------- /tests/lcov/merge/a_subtract_b.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/merge/a_subtract_b.gold -------------------------------------------------------------------------------- /tests/lcov/merge/b.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/merge/b.dat -------------------------------------------------------------------------------- /tests/lcov/merge/b.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/merge/b.info -------------------------------------------------------------------------------- /tests/lcov/merge/b_subtract_a.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/merge/b_subtract_a.gold -------------------------------------------------------------------------------- /tests/lcov/merge/functionBug_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/merge/functionBug_1.dat -------------------------------------------------------------------------------- /tests/lcov/merge/functionBug_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/merge/functionBug_2.dat -------------------------------------------------------------------------------- /tests/lcov/merge/intersect.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/merge/intersect.gold -------------------------------------------------------------------------------- /tests/lcov/merge/mcdc.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/merge/mcdc.dat -------------------------------------------------------------------------------- /tests/lcov/merge/merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/merge/merge.sh -------------------------------------------------------------------------------- /tests/lcov/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/misc/Makefile -------------------------------------------------------------------------------- /tests/lcov/misc/help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/misc/help.sh -------------------------------------------------------------------------------- /tests/lcov/misc/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/misc/version.sh -------------------------------------------------------------------------------- /tests/lcov/multiple/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/multiple/Makefile -------------------------------------------------------------------------------- /tests/lcov/multiple/multiple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/multiple/multiple.sh -------------------------------------------------------------------------------- /tests/lcov/summary/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/summary/Makefile -------------------------------------------------------------------------------- /tests/lcov/summary/concatenated.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/summary/concatenated.sh -------------------------------------------------------------------------------- /tests/lcov/summary/concatenated2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/summary/concatenated2.sh -------------------------------------------------------------------------------- /tests/lcov/summary/full.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/summary/full.sh -------------------------------------------------------------------------------- /tests/lcov/summary/part1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/summary/part1.sh -------------------------------------------------------------------------------- /tests/lcov/summary/part2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/summary/part2.sh -------------------------------------------------------------------------------- /tests/lcov/summary/target.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/summary/target.sh -------------------------------------------------------------------------------- /tests/lcov/summary/zero.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcov/summary/zero.sh -------------------------------------------------------------------------------- /tests/lcovrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/lcovrc -------------------------------------------------------------------------------- /tests/llvm2lcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/llvm2lcov/Makefile -------------------------------------------------------------------------------- /tests/llvm2lcov/llvm2lcov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/llvm2lcov/llvm2lcov.sh -------------------------------------------------------------------------------- /tests/llvm2lcov/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/llvm2lcov/main.cpp -------------------------------------------------------------------------------- /tests/llvm2lcov/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/llvm2lcov/test.h -------------------------------------------------------------------------------- /tests/perl2lcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/perl2lcov/Makefile -------------------------------------------------------------------------------- /tests/perl2lcov/example.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/perl2lcov/example.pl -------------------------------------------------------------------------------- /tests/perl2lcov/perltest1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/perl2lcov/perltest1.sh -------------------------------------------------------------------------------- /tests/profiles/large: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/profiles/large -------------------------------------------------------------------------------- /tests/profiles/medium: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/profiles/medium -------------------------------------------------------------------------------- /tests/profiles/small: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/profiles/small -------------------------------------------------------------------------------- /tests/py2lcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/py2lcov/Makefile -------------------------------------------------------------------------------- /tests/py2lcov/localmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/py2lcov/localmodule.py -------------------------------------------------------------------------------- /tests/py2lcov/py2lcov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/py2lcov/py2lcov.sh -------------------------------------------------------------------------------- /tests/py2lcov/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/py2lcov/test.py -------------------------------------------------------------------------------- /tests/xml2lcov/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/xml2lcov/Makefile -------------------------------------------------------------------------------- /tests/xml2lcov/coverage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/xml2lcov/coverage.xml -------------------------------------------------------------------------------- /tests/xml2lcov/xml2lcov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linux-test-project/lcov/HEAD/tests/xml2lcov/xml2lcov.sh --------------------------------------------------------------------------------