├── Embedded_gcov_FSW-22_20220118.pdf ├── LICENSE.txt ├── README.md ├── code ├── gcov_gcc.c ├── gcov_gcc.h ├── gcov_printf.c ├── gcov_public.c └── gcov_public.h ├── example ├── Makefile └── example.c ├── objs └── .gitkeep ├── results └── .gitkeep └── scripts ├── gcov_convert.sh ├── genhtml_report.sh ├── lcov_baseline.sh ├── lcov_combine_new_base.sh ├── lcov_combine_new_total.sh ├── lcov_newcoverage.sh └── serial_split.awk /Embedded_gcov_FSW-22_20220118.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl/embedded-gcov/HEAD/Embedded_gcov_FSW-22_20220118.pdf -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl/embedded-gcov/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl/embedded-gcov/HEAD/README.md -------------------------------------------------------------------------------- /code/gcov_gcc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl/embedded-gcov/HEAD/code/gcov_gcc.c -------------------------------------------------------------------------------- /code/gcov_gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl/embedded-gcov/HEAD/code/gcov_gcc.h -------------------------------------------------------------------------------- /code/gcov_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl/embedded-gcov/HEAD/code/gcov_printf.c -------------------------------------------------------------------------------- /code/gcov_public.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl/embedded-gcov/HEAD/code/gcov_public.c -------------------------------------------------------------------------------- /code/gcov_public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl/embedded-gcov/HEAD/code/gcov_public.h -------------------------------------------------------------------------------- /example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl/embedded-gcov/HEAD/example/Makefile -------------------------------------------------------------------------------- /example/example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl/embedded-gcov/HEAD/example/example.c -------------------------------------------------------------------------------- /objs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /results/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/gcov_convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl/embedded-gcov/HEAD/scripts/gcov_convert.sh -------------------------------------------------------------------------------- /scripts/genhtml_report.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl/embedded-gcov/HEAD/scripts/genhtml_report.sh -------------------------------------------------------------------------------- /scripts/lcov_baseline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl/embedded-gcov/HEAD/scripts/lcov_baseline.sh -------------------------------------------------------------------------------- /scripts/lcov_combine_new_base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl/embedded-gcov/HEAD/scripts/lcov_combine_new_base.sh -------------------------------------------------------------------------------- /scripts/lcov_combine_new_total.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl/embedded-gcov/HEAD/scripts/lcov_combine_new_total.sh -------------------------------------------------------------------------------- /scripts/lcov_newcoverage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl/embedded-gcov/HEAD/scripts/lcov_newcoverage.sh -------------------------------------------------------------------------------- /scripts/serial_split.awk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nasa-jpl/embedded-gcov/HEAD/scripts/serial_split.awk --------------------------------------------------------------------------------