diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a0fe6d035..69c12110d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -15,6 +15,7 @@ Improvements and new features: - Don't use a temporary directory for running gcov (:issue:`525`) - Fix junctions on windows for Python 3.8 (:issue:`535`) - Can create reproducible reports with the :option:`--timestamp` option (:issue:`546`) +- Add "Goto function" in html details. (:issue:`515`) Documentation: diff --git a/doc/examples/example_html.details.css b/doc/examples/example_html.details.css index dbacc6fce..37055de34 100644 --- a/doc/examples/example_html.details.css +++ b/doc/examples/example_html.details.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/doc/examples/example_html.details.example.cpp.9597a7a3397b8e3a48116e2a3afb4154.html b/doc/examples/example_html.details.example.cpp.9597a7a3397b8e3a48116e2a3afb4154.html index 0215290cb..5807f572b 100644 --- a/doc/examples/example_html.details.example.cpp.9597a7a3397b8e3a48116e2a3afb4154.html +++ b/doc/examples/example_html.details.example.cpp.9597a7a3397b8e3a48116e2a3afb4154.html @@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 3 + + called 1 time +
+ main + + 15 + + called 1 time +
+
+
diff --git a/doc/examples/example_html.html b/doc/examples/example_html.html index 6f5648807..9f47cab25 100644 --- a/doc/examples/example_html.html +++ b/doc/examples/example_html.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/doc/images/screenshot-html-details.example.cpp.png b/doc/images/screenshot-html-details.example.cpp.png index 6e1bf25da..4c0a18de4 100644 Binary files a/doc/images/screenshot-html-details.example.cpp.png and b/doc/images/screenshot-html-details.example.cpp.png differ diff --git a/gcovr/templates/source_page.html b/gcovr/templates/source_page.html index 6756a2cc0..d870cd3f2 100644 --- a/gcovr/templates/source_page.html +++ b/gcovr/templates/source_page.html @@ -36,7 +36,7 @@ - + @@ -49,6 +49,36 @@ {% endblock %} {% block content %} +{% if function_list %} +
+ List of functions +
Functions: {{functions.exec}} {{functions.total}}{{functions.coverage}}%{{functions.coverage}}%
Branches:
+ + + + + +{% for entry in function_list %} + + + + + +{% endfor %} +
FunctionLineCall count
+ {{ entry["name"] }} + + {{ entry["line"] }} + + + {%- if entry["count"] == 0 %} not called + {%- else %} called {{ entry["count"] }} time{% if entry["count"] > 1 %}s{% endif %} + {%- endif -%} + +
+ +
+{% endif -%}
diff --git a/gcovr/templates/style.details.css b/gcovr/templates/style.details.css index 13289f232..93a1c1bd8 100644 --- a/gcovr/templates/style.details.css +++ b/gcovr/templates/style.details.css @@ -82,6 +82,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/add_coverages/reference/clang-10/coverage.bar.cpp.e7a3224e852d4c9e084f9127df0315df.html b/gcovr/tests/add_coverages/reference/clang-10/coverage.bar.cpp.e7a3224e852d4c9e084f9127df0315df.html index e8eff7ae3..3958bc8b0 100644 --- a/gcovr/tests/add_coverages/reference/clang-10/coverage.bar.cpp.e7a3224e852d4c9e084f9127df0315df.html +++ b/gcovr/tests/add_coverages/reference/clang-10/coverage.bar.cpp.e7a3224e852d4c9e084f9127df0315df.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:232021-09-21 19:21:54
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3barv + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/add_coverages/reference/clang-10/coverage.foo.cpp.da858f18e0c3a73a7b98ff456723b9ae.html b/gcovr/tests/add_coverages/reference/clang-10/coverage.foo.cpp.da858f18e0c3a73a7b98ff456723b9ae.html index 642ca714c..f2e87e74a 100644 --- a/gcovr/tests/add_coverages/reference/clang-10/coverage.foo.cpp.da858f18e0c3a73a7b98ff456723b9ae.html +++ b/gcovr/tests/add_coverages/reference/clang-10/coverage.foo.cpp.da858f18e0c3a73a7b98ff456723b9ae.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:232021-09-21 19:21:54
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3foov + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/add_coverages/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/add_coverages/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 9772a869f..89097832e 100644 --- a/gcovr/tests/add_coverages/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/add_coverages/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:232021-09-21 19:21:54
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 10 + + called 2 times +
+
+
diff --git a/gcovr/tests/add_coverages/reference/gcc-5/coverage.bar.cpp.e7a3224e852d4c9e084f9127df0315df.html b/gcovr/tests/add_coverages/reference/gcc-5/coverage.bar.cpp.e7a3224e852d4c9e084f9127df0315df.html index 854336f38..b28d914bc 100644 --- a/gcovr/tests/add_coverages/reference/gcc-5/coverage.bar.cpp.e7a3224e852d4c9e084f9127df0315df.html +++ b/gcovr/tests/add_coverages/reference/gcc-5/coverage.bar.cpp.e7a3224e852d4c9e084f9127df0315df.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:092021-09-21 19:04:30
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/add_coverages/reference/gcc-5/coverage.foo.cpp.da858f18e0c3a73a7b98ff456723b9ae.html b/gcovr/tests/add_coverages/reference/gcc-5/coverage.foo.cpp.da858f18e0c3a73a7b98ff456723b9ae.html index 137569cb2..9d7559630 100644 --- a/gcovr/tests/add_coverages/reference/gcc-5/coverage.foo.cpp.da858f18e0c3a73a7b98ff456723b9ae.html +++ b/gcovr/tests/add_coverages/reference/gcc-5/coverage.foo.cpp.da858f18e0c3a73a7b98ff456723b9ae.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:092021-09-21 19:04:30
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo() + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/add_coverages/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/add_coverages/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 71f33a8bd..7efbb6650 100644 --- a/gcovr/tests/add_coverages/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/add_coverages/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:092021-09-21 19:04:30
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 10 + + called 2 times +
+
+
diff --git a/gcovr/tests/add_coverages/reference/gcc-6/coverage.bar.cpp.e7a3224e852d4c9e084f9127df0315df.html b/gcovr/tests/add_coverages/reference/gcc-6/coverage.bar.cpp.e7a3224e852d4c9e084f9127df0315df.html index 84c990a8c..87eae7fd0 100644 --- a/gcovr/tests/add_coverages/reference/gcc-6/coverage.bar.cpp.e7a3224e852d4c9e084f9127df0315df.html +++ b/gcovr/tests/add_coverages/reference/gcc-6/coverage.bar.cpp.e7a3224e852d4c9e084f9127df0315df.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:38:452021-09-21 19:12:22
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/add_coverages/reference/gcc-6/coverage.foo.cpp.da858f18e0c3a73a7b98ff456723b9ae.html b/gcovr/tests/add_coverages/reference/gcc-6/coverage.foo.cpp.da858f18e0c3a73a7b98ff456723b9ae.html index 0c536f547..ce7ddfdcb 100644 --- a/gcovr/tests/add_coverages/reference/gcc-6/coverage.foo.cpp.da858f18e0c3a73a7b98ff456723b9ae.html +++ b/gcovr/tests/add_coverages/reference/gcc-6/coverage.foo.cpp.da858f18e0c3a73a7b98ff456723b9ae.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:38:452021-09-21 19:12:22
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo() + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/add_coverages/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/add_coverages/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index b6b083307..ce4701c02 100644 --- a/gcovr/tests/add_coverages/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/add_coverages/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:38:452021-09-21 19:12:22
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 10 + + called 2 times +
+
+
diff --git a/gcovr/tests/add_coverages/reference/gcc-8/coverage.bar.cpp.e7a3224e852d4c9e084f9127df0315df.html b/gcovr/tests/add_coverages/reference/gcc-8/coverage.bar.cpp.e7a3224e852d4c9e084f9127df0315df.html index 5a09a1ea3..aaa4422e8 100644 --- a/gcovr/tests/add_coverages/reference/gcc-8/coverage.bar.cpp.e7a3224e852d4c9e084f9127df0315df.html +++ b/gcovr/tests/add_coverages/reference/gcc-8/coverage.bar.cpp.e7a3224e852d4c9e084f9127df0315df.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:282021-09-21 19:17:11
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/add_coverages/reference/gcc-8/coverage.foo.cpp.da858f18e0c3a73a7b98ff456723b9ae.html b/gcovr/tests/add_coverages/reference/gcc-8/coverage.foo.cpp.da858f18e0c3a73a7b98ff456723b9ae.html index 156a76ae3..99b870e50 100644 --- a/gcovr/tests/add_coverages/reference/gcc-8/coverage.foo.cpp.da858f18e0c3a73a7b98ff456723b9ae.html +++ b/gcovr/tests/add_coverages/reference/gcc-8/coverage.foo.cpp.da858f18e0c3a73a7b98ff456723b9ae.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:282021-09-21 19:17:11
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo() + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/add_coverages/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/add_coverages/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 46bbf4032..a53dd5562 100644 --- a/gcovr/tests/add_coverages/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/add_coverages/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:282021-09-21 19:17:11
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 10 + + called 2 times +
+
+
diff --git a/gcovr/tests/bad++char/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/bad++char/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index b82300102..b303d8988 100644 --- a/gcovr/tests/bad++char/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/bad++char/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:242021-09-21 19:21:56
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/bad++char/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/bad++char/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 79ea460cc..03c45f924 100644 --- a/gcovr/tests/bad++char/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/bad++char/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:102021-09-21 19:04:32
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/bad++char/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/bad++char/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index cf7450c9b..2f51ba6fd 100644 --- a/gcovr/tests/bad++char/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/bad++char/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:38:462021-09-21 19:12:24
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/bad++char/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/bad++char/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index c0365bdf1..605e005c5 100644 --- a/gcovr/tests/bad++char/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/bad++char/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:292021-09-21 19:17:13
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/cmake_oos/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/cmake_oos/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 29744dd21..1e1986ea8 100644 --- a/gcovr/tests/cmake_oos/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/cmake_oos/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:272021-09-21 19:21:58
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/cmake_oos/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/cmake_oos/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 282db41ad..57d4e0d4c 100644 --- a/gcovr/tests/cmake_oos/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/cmake_oos/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:132021-09-21 19:04:34
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/cmake_oos/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/cmake_oos/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index af1199c12..99f08c725 100644 --- a/gcovr/tests/cmake_oos/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/cmake_oos/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:38:492021-09-21 19:12:26
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/cmake_oos/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/cmake_oos/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 8d628abcf..ed6e708b0 100644 --- a/gcovr/tests/cmake_oos/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/cmake_oos/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:322021-09-21 19:17:15
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/cmake_oos_ninja/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/cmake_oos_ninja/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index f14efb81a..76648f745 100644 --- a/gcovr/tests/cmake_oos_ninja/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/cmake_oos_ninja/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:292021-09-21 19:22:01
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/cmake_oos_ninja/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/cmake_oos_ninja/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 181df37dc..576295f0f 100644 --- a/gcovr/tests/cmake_oos_ninja/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/cmake_oos_ninja/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:152021-09-21 19:04:37
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/cmake_oos_ninja/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/cmake_oos_ninja/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index c6ebaad3a..d9f3afbbf 100644 --- a/gcovr/tests/cmake_oos_ninja/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/cmake_oos_ninja/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:38:522021-09-21 19:12:29
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/cmake_oos_ninja/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/cmake_oos_ninja/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 32c818bee..fae2c67a7 100644 --- a/gcovr/tests/cmake_oos_ninja/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/cmake_oos_ninja/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:352021-09-21 19:17:18
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/clang-10/coverage.file1.cpp.e4b34f3a937a38f4f36ad7d4400aa49c.html b/gcovr/tests/dot/reference/clang-10/coverage.file1.cpp.e4b34f3a937a38f4f36ad7d4400aa49c.html index 4223f1b26..dab675b9e 100644 --- a/gcovr/tests/dot/reference/clang-10/coverage.file1.cpp.e4b34f3a937a38f4f36ad7d4400aa49c.html +++ b/gcovr/tests/dot/reference/clang-10/coverage.file1.cpp.e4b34f3a937a38f4f36ad7d4400aa49c.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:332021-09-21 19:22:04
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/clang-10/coverage.file2.cpp.d6f57cdf75749662672decd0e9380e9e.html b/gcovr/tests/dot/reference/clang-10/coverage.file2.cpp.d6f57cdf75749662672decd0e9380e9e.html index 48134e1ba..66f1d0d12 100644 --- a/gcovr/tests/dot/reference/clang-10/coverage.file2.cpp.d6f57cdf75749662672decd0e9380e9e.html +++ b/gcovr/tests/dot/reference/clang-10/coverage.file2.cpp.d6f57cdf75749662672decd0e9380e9e.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:332021-09-21 19:22:04
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 2 - 50.0% + 50.0% Branches: @@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3barv + + 1 + + called 1 time +
+ _Z4bar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/dot/reference/clang-10/coverage.file3.cpp.2f75129acf13033c6475b68d314e376c.html b/gcovr/tests/dot/reference/clang-10/coverage.file3.cpp.2f75129acf13033c6475b68d314e376c.html index 4926b6a14..651262136 100644 --- a/gcovr/tests/dot/reference/clang-10/coverage.file3.cpp.2f75129acf13033c6475b68d314e376c.html +++ b/gcovr/tests/dot/reference/clang-10/coverage.file3.cpp.2f75129acf13033c6475b68d314e376c.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:332021-09-21 19:22:04
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 2 - 50.0% + 50.0% Branches: @@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z7fourbarv + + 1 + + called 1 time +
+ _Z8fourbar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/dot/reference/clang-10/coverage.file4.cpp.a8cdb399bbaa0894976d9ad0d61c7cad.html b/gcovr/tests/dot/reference/clang-10/coverage.file4.cpp.a8cdb399bbaa0894976d9ad0d61c7cad.html index 9c25f38a0..d32ab7974 100644 --- a/gcovr/tests/dot/reference/clang-10/coverage.file4.cpp.a8cdb399bbaa0894976d9ad0d61c7cad.html +++ b/gcovr/tests/dot/reference/clang-10/coverage.file4.cpp.a8cdb399bbaa0894976d9ad0d61c7cad.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:332021-09-21 19:22:04
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z6foobari + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/clang-10/coverage.file5.cpp.c953054e717675f6f8af56f7fee2fb14.html b/gcovr/tests/dot/reference/clang-10/coverage.file5.cpp.c953054e717675f6f8af56f7fee2fb14.html index f9b13168c..8e943e0f6 100644 --- a/gcovr/tests/dot/reference/clang-10/coverage.file5.cpp.c953054e717675f6f8af56f7fee2fb14.html +++ b/gcovr/tests/dot/reference/clang-10/coverage.file5.cpp.c953054e717675f6f8af56f7fee2fb14.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:332021-09-21 19:22:04
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo5i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/clang-10/coverage.file6.cpp.c20fdcf8b426a70630979c0fc0ebd442.html b/gcovr/tests/dot/reference/clang-10/coverage.file6.cpp.c20fdcf8b426a70630979c0fc0ebd442.html index 929e8af9b..f9d71fa12 100644 --- a/gcovr/tests/dot/reference/clang-10/coverage.file6.cpp.c20fdcf8b426a70630979c0fc0ebd442.html +++ b/gcovr/tests/dot/reference/clang-10/coverage.file6.cpp.c20fdcf8b426a70630979c0fc0ebd442.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:332021-09-21 19:22:04
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo6i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/clang-10/coverage.main.cpp.d0d5fc20837f40fa4765af5e07f5d1b9.html b/gcovr/tests/dot/reference/clang-10/coverage.main.cpp.d0d5fc20837f40fa4765af5e07f5d1b9.html index b74627fad..890d74c3f 100644 --- a/gcovr/tests/dot/reference/clang-10/coverage.main.cpp.d0d5fc20837f40fa4765af5e07f5d1b9.html +++ b/gcovr/tests/dot/reference/clang-10/coverage.main.cpp.d0d5fc20837f40fa4765af5e07f5d1b9.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:332021-09-21 19:22:04
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 11 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-5/coverage.file1.cpp.e4b34f3a937a38f4f36ad7d4400aa49c.html b/gcovr/tests/dot/reference/gcc-5/coverage.file1.cpp.e4b34f3a937a38f4f36ad7d4400aa49c.html index f582be089..0e8d50b5e 100644 --- a/gcovr/tests/dot/reference/gcc-5/coverage.file1.cpp.e4b34f3a937a38f4f36ad7d4400aa49c.html +++ b/gcovr/tests/dot/reference/gcc-5/coverage.file1.cpp.e4b34f3a937a38f4f36ad7d4400aa49c.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:182021-09-21 19:04:40
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-5/coverage.file2.cpp.d6f57cdf75749662672decd0e9380e9e.html b/gcovr/tests/dot/reference/gcc-5/coverage.file2.cpp.d6f57cdf75749662672decd0e9380e9e.html index 6471c7a80..c73429735 100644 --- a/gcovr/tests/dot/reference/gcc-5/coverage.file2.cpp.d6f57cdf75749662672decd0e9380e9e.html +++ b/gcovr/tests/dot/reference/gcc-5/coverage.file2.cpp.d6f57cdf75749662672decd0e9380e9e.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:182021-09-21 19:04:40
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 2 - 50.0% + 50.0% Branches: @@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-5/coverage.file3.cpp.2f75129acf13033c6475b68d314e376c.html b/gcovr/tests/dot/reference/gcc-5/coverage.file3.cpp.2f75129acf13033c6475b68d314e376c.html index f1b09225a..a464dc112 100644 --- a/gcovr/tests/dot/reference/gcc-5/coverage.file3.cpp.2f75129acf13033c6475b68d314e376c.html +++ b/gcovr/tests/dot/reference/gcc-5/coverage.file3.cpp.2f75129acf13033c6475b68d314e376c.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:182021-09-21 19:04:40
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 2 - 50.0% + 50.0% Branches: @@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-5/coverage.file4.cpp.a8cdb399bbaa0894976d9ad0d61c7cad.html b/gcovr/tests/dot/reference/gcc-5/coverage.file4.cpp.a8cdb399bbaa0894976d9ad0d61c7cad.html index 895851013..76d0353b6 100644 --- a/gcovr/tests/dot/reference/gcc-5/coverage.file4.cpp.a8cdb399bbaa0894976d9ad0d61c7cad.html +++ b/gcovr/tests/dot/reference/gcc-5/coverage.file4.cpp.a8cdb399bbaa0894976d9ad0d61c7cad.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:182021-09-21 19:04:40
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foobar(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-5/coverage.file5.cpp.c953054e717675f6f8af56f7fee2fb14.html b/gcovr/tests/dot/reference/gcc-5/coverage.file5.cpp.c953054e717675f6f8af56f7fee2fb14.html index e12addc87..5e5f02491 100644 --- a/gcovr/tests/dot/reference/gcc-5/coverage.file5.cpp.c953054e717675f6f8af56f7fee2fb14.html +++ b/gcovr/tests/dot/reference/gcc-5/coverage.file5.cpp.c953054e717675f6f8af56f7fee2fb14.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:182021-09-21 19:04:40
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo5(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-5/coverage.file6.cpp.c20fdcf8b426a70630979c0fc0ebd442.html b/gcovr/tests/dot/reference/gcc-5/coverage.file6.cpp.c20fdcf8b426a70630979c0fc0ebd442.html index 4602a9ad7..7c882e5a1 100644 --- a/gcovr/tests/dot/reference/gcc-5/coverage.file6.cpp.c20fdcf8b426a70630979c0fc0ebd442.html +++ b/gcovr/tests/dot/reference/gcc-5/coverage.file6.cpp.c20fdcf8b426a70630979c0fc0ebd442.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:182021-09-21 19:04:40
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo6(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-5/coverage.main.cpp.d0d5fc20837f40fa4765af5e07f5d1b9.html b/gcovr/tests/dot/reference/gcc-5/coverage.main.cpp.d0d5fc20837f40fa4765af5e07f5d1b9.html index 86ac1a25c..2e900693e 100644 --- a/gcovr/tests/dot/reference/gcc-5/coverage.main.cpp.d0d5fc20837f40fa4765af5e07f5d1b9.html +++ b/gcovr/tests/dot/reference/gcc-5/coverage.main.cpp.d0d5fc20837f40fa4765af5e07f5d1b9.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:182021-09-21 19:04:40
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 11 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-6/coverage.file1.cpp.e4b34f3a937a38f4f36ad7d4400aa49c.html b/gcovr/tests/dot/reference/gcc-6/coverage.file1.cpp.e4b34f3a937a38f4f36ad7d4400aa49c.html index 1f3d923c6..71c02e6f4 100644 --- a/gcovr/tests/dot/reference/gcc-6/coverage.file1.cpp.e4b34f3a937a38f4f36ad7d4400aa49c.html +++ b/gcovr/tests/dot/reference/gcc-6/coverage.file1.cpp.e4b34f3a937a38f4f36ad7d4400aa49c.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:38:552021-09-21 19:12:32
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-6/coverage.file2.cpp.d6f57cdf75749662672decd0e9380e9e.html b/gcovr/tests/dot/reference/gcc-6/coverage.file2.cpp.d6f57cdf75749662672decd0e9380e9e.html index 81161042c..9f94070d5 100644 --- a/gcovr/tests/dot/reference/gcc-6/coverage.file2.cpp.d6f57cdf75749662672decd0e9380e9e.html +++ b/gcovr/tests/dot/reference/gcc-6/coverage.file2.cpp.d6f57cdf75749662672decd0e9380e9e.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:38:552021-09-21 19:12:32
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 2 - 50.0% + 50.0% Branches: @@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-6/coverage.file3.cpp.2f75129acf13033c6475b68d314e376c.html b/gcovr/tests/dot/reference/gcc-6/coverage.file3.cpp.2f75129acf13033c6475b68d314e376c.html index 5b98d040f..c99fb2c94 100644 --- a/gcovr/tests/dot/reference/gcc-6/coverage.file3.cpp.2f75129acf13033c6475b68d314e376c.html +++ b/gcovr/tests/dot/reference/gcc-6/coverage.file3.cpp.2f75129acf13033c6475b68d314e376c.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:38:552021-09-21 19:12:32
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 2 - 50.0% + 50.0% Branches: @@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-6/coverage.file4.cpp.a8cdb399bbaa0894976d9ad0d61c7cad.html b/gcovr/tests/dot/reference/gcc-6/coverage.file4.cpp.a8cdb399bbaa0894976d9ad0d61c7cad.html index 464cc52b4..226b6335a 100644 --- a/gcovr/tests/dot/reference/gcc-6/coverage.file4.cpp.a8cdb399bbaa0894976d9ad0d61c7cad.html +++ b/gcovr/tests/dot/reference/gcc-6/coverage.file4.cpp.a8cdb399bbaa0894976d9ad0d61c7cad.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:38:552021-09-21 19:12:32
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foobar(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-6/coverage.file5.cpp.c953054e717675f6f8af56f7fee2fb14.html b/gcovr/tests/dot/reference/gcc-6/coverage.file5.cpp.c953054e717675f6f8af56f7fee2fb14.html index 8e3f67137..66c3dafcf 100644 --- a/gcovr/tests/dot/reference/gcc-6/coverage.file5.cpp.c953054e717675f6f8af56f7fee2fb14.html +++ b/gcovr/tests/dot/reference/gcc-6/coverage.file5.cpp.c953054e717675f6f8af56f7fee2fb14.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:38:552021-09-21 19:12:32
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo5(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-6/coverage.file6.cpp.c20fdcf8b426a70630979c0fc0ebd442.html b/gcovr/tests/dot/reference/gcc-6/coverage.file6.cpp.c20fdcf8b426a70630979c0fc0ebd442.html index 2e587123e..bcf1b7943 100644 --- a/gcovr/tests/dot/reference/gcc-6/coverage.file6.cpp.c20fdcf8b426a70630979c0fc0ebd442.html +++ b/gcovr/tests/dot/reference/gcc-6/coverage.file6.cpp.c20fdcf8b426a70630979c0fc0ebd442.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:38:552021-09-21 19:12:32
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo6(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-6/coverage.main.cpp.d0d5fc20837f40fa4765af5e07f5d1b9.html b/gcovr/tests/dot/reference/gcc-6/coverage.main.cpp.d0d5fc20837f40fa4765af5e07f5d1b9.html index 89cf6f9a7..bf6bf5287 100644 --- a/gcovr/tests/dot/reference/gcc-6/coverage.main.cpp.d0d5fc20837f40fa4765af5e07f5d1b9.html +++ b/gcovr/tests/dot/reference/gcc-6/coverage.main.cpp.d0d5fc20837f40fa4765af5e07f5d1b9.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:38:552021-09-21 19:12:32
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 11 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-8/coverage.file1.cpp.e4b34f3a937a38f4f36ad7d4400aa49c.html b/gcovr/tests/dot/reference/gcc-8/coverage.file1.cpp.e4b34f3a937a38f4f36ad7d4400aa49c.html index 7025d9efe..691dcd166 100644 --- a/gcovr/tests/dot/reference/gcc-8/coverage.file1.cpp.e4b34f3a937a38f4f36ad7d4400aa49c.html +++ b/gcovr/tests/dot/reference/gcc-8/coverage.file1.cpp.e4b34f3a937a38f4f36ad7d4400aa49c.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:382021-09-21 19:17:21
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-8/coverage.file2.cpp.d6f57cdf75749662672decd0e9380e9e.html b/gcovr/tests/dot/reference/gcc-8/coverage.file2.cpp.d6f57cdf75749662672decd0e9380e9e.html index a4433b3c6..adeb28d5a 100644 --- a/gcovr/tests/dot/reference/gcc-8/coverage.file2.cpp.d6f57cdf75749662672decd0e9380e9e.html +++ b/gcovr/tests/dot/reference/gcc-8/coverage.file2.cpp.d6f57cdf75749662672decd0e9380e9e.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:382021-09-21 19:17:21
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 2 - 50.0% + 50.0% Branches: @@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-8/coverage.file3.cpp.2f75129acf13033c6475b68d314e376c.html b/gcovr/tests/dot/reference/gcc-8/coverage.file3.cpp.2f75129acf13033c6475b68d314e376c.html index 8415fd344..3a23f2ba0 100644 --- a/gcovr/tests/dot/reference/gcc-8/coverage.file3.cpp.2f75129acf13033c6475b68d314e376c.html +++ b/gcovr/tests/dot/reference/gcc-8/coverage.file3.cpp.2f75129acf13033c6475b68d314e376c.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:382021-09-21 19:17:21
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 2 - 50.0% + 50.0% Branches: @@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-8/coverage.file4.cpp.a8cdb399bbaa0894976d9ad0d61c7cad.html b/gcovr/tests/dot/reference/gcc-8/coverage.file4.cpp.a8cdb399bbaa0894976d9ad0d61c7cad.html index a4b6488e2..8bc9ee9f9 100644 --- a/gcovr/tests/dot/reference/gcc-8/coverage.file4.cpp.a8cdb399bbaa0894976d9ad0d61c7cad.html +++ b/gcovr/tests/dot/reference/gcc-8/coverage.file4.cpp.a8cdb399bbaa0894976d9ad0d61c7cad.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:382021-09-21 19:17:21
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foobar(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-8/coverage.file5.cpp.c953054e717675f6f8af56f7fee2fb14.html b/gcovr/tests/dot/reference/gcc-8/coverage.file5.cpp.c953054e717675f6f8af56f7fee2fb14.html index 82a837366..e1d39fd5e 100644 --- a/gcovr/tests/dot/reference/gcc-8/coverage.file5.cpp.c953054e717675f6f8af56f7fee2fb14.html +++ b/gcovr/tests/dot/reference/gcc-8/coverage.file5.cpp.c953054e717675f6f8af56f7fee2fb14.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:382021-09-21 19:17:21
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo5(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-8/coverage.file6.cpp.c20fdcf8b426a70630979c0fc0ebd442.html b/gcovr/tests/dot/reference/gcc-8/coverage.file6.cpp.c20fdcf8b426a70630979c0fc0ebd442.html index b82c691db..9197ba979 100644 --- a/gcovr/tests/dot/reference/gcc-8/coverage.file6.cpp.c20fdcf8b426a70630979c0fc0ebd442.html +++ b/gcovr/tests/dot/reference/gcc-8/coverage.file6.cpp.c20fdcf8b426a70630979c0fc0ebd442.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:382021-09-21 19:17:21
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo6(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/dot/reference/gcc-8/coverage.main.cpp.d0d5fc20837f40fa4765af5e07f5d1b9.html b/gcovr/tests/dot/reference/gcc-8/coverage.main.cpp.d0d5fc20837f40fa4765af5e07f5d1b9.html index c93c15404..ef7d34470 100644 --- a/gcovr/tests/dot/reference/gcc-8/coverage.main.cpp.d0d5fc20837f40fa4765af5e07f5d1b9.html +++ b/gcovr/tests/dot/reference/gcc-8/coverage.main.cpp.d0d5fc20837f40fa4765af5e07f5d1b9.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:382021-09-21 19:17:21
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 11 + + called 1 time +
+
+
diff --git a/gcovr/tests/excl-branch/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/excl-branch/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 2bfb27b55..e34cc92da 100644 --- a/gcovr/tests/excl-branch/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/excl-branch/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-11-10 21:15:472021-11-09 20:50:16
@@ -62,6 +62,83 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3bari + + 38 + + not called +
+ _Z3fooi + + 16 + + called 5 times +
+ _ZN3BarC2Ev + + 7 + + called 1 time +
+ _ZN3BarD0Ev + + 9 + + not called +
+ _ZN3BarD2Ev + + 9 + + called 1 time +
+ main + + 46 + + called 1 time +
+
+
diff --git a/gcovr/tests/excl-branch/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/excl-branch/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 9a20f5226..4ebac36ef 100644 --- a/gcovr/tests/excl-branch/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/excl-branch/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:192021-09-21 19:04:41
@@ -62,6 +62,72 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ Bar::Bar() + + 7 + + called 1 time +
+ Bar::~Bar() + + 9 + + called 1 time +
+ bar(int) + + 38 + + not called +
+ foo(int) + + 16 + + called 5 times +
+ main + + 46 + + called 1 time +
+
+
diff --git a/gcovr/tests/excl-branch/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/excl-branch/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 3ded69b10..968ca8da5 100644 --- a/gcovr/tests/excl-branch/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/excl-branch/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:38:562021-09-21 19:12:34
@@ -62,6 +62,72 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ Bar::Bar() + + 7 + + called 1 time +
+ Bar::~Bar() + + 9 + + called 1 time +
+ bar(int) + + 38 + + not called +
+ foo(int) + + 16 + + called 5 times +
+ main + + 46 + + called 1 time +
+
+
diff --git a/gcovr/tests/excl-branch/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/excl-branch/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index e77e771f4..a52233545 100644 --- a/gcovr/tests/excl-branch/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/excl-branch/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:392021-09-21 19:17:23
@@ -62,6 +62,72 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ Bar::Bar() + + 7 + + called 1 time +
+ Bar::~Bar() + + 9 + + called 1 time +
+ bar(int) + + 38 + + not called +
+ foo(int) + + 16 + + called 5 times +
+ main + + 46 + + called 1 time +
+
+
diff --git a/gcovr/tests/excl-line/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/excl-line/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 42fc518bf..89d035c5d 100644 --- a/gcovr/tests/excl-line/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/excl-line/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 20:20:262021-11-09 20:50:18
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 4 + + called 1 time +
+ main + + 20 + + called 1 time +
+
+
diff --git a/gcovr/tests/excl-line/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/excl-line/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index af06d0d6d..93deec203 100644 --- a/gcovr/tests/excl-line/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/excl-line/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:212021-09-21 19:04:42
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 20 + + called 1 time +
+
+
diff --git a/gcovr/tests/excl-line/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/excl-line/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index d1c992e62..4431ad0af 100644 --- a/gcovr/tests/excl-line/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/excl-line/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:38:572021-09-21 19:12:35
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 20 + + called 1 time +
+
+
diff --git a/gcovr/tests/excl-line/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/excl-line/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 16353183f..f76c14853 100644 --- a/gcovr/tests/excl-line/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/excl-line/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:402021-09-21 19:17:24
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 20 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-directories-relative/reference/clang-10/coverage.main.cpp.7d9c2f9355c8440401e02b7b21029098.html b/gcovr/tests/exclude-directories-relative/reference/clang-10/coverage.main.cpp.7d9c2f9355c8440401e02b7b21029098.html index 4d45f7c54..4fa3b37de 100644 --- a/gcovr/tests/exclude-directories-relative/reference/clang-10/coverage.main.cpp.7d9c2f9355c8440401e02b7b21029098.html +++ b/gcovr/tests/exclude-directories-relative/reference/clang-10/coverage.main.cpp.7d9c2f9355c8440401e02b7b21029098.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:362021-09-21 19:22:08
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-directories-relative/reference/gcc-5/coverage.main.cpp.7d9c2f9355c8440401e02b7b21029098.html b/gcovr/tests/exclude-directories-relative/reference/gcc-5/coverage.main.cpp.7d9c2f9355c8440401e02b7b21029098.html index 1782fe1bb..5fb2994ad 100644 --- a/gcovr/tests/exclude-directories-relative/reference/gcc-5/coverage.main.cpp.7d9c2f9355c8440401e02b7b21029098.html +++ b/gcovr/tests/exclude-directories-relative/reference/gcc-5/coverage.main.cpp.7d9c2f9355c8440401e02b7b21029098.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:222021-09-21 19:04:44
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-directories-relative/reference/gcc-6/coverage.main.cpp.7d9c2f9355c8440401e02b7b21029098.html b/gcovr/tests/exclude-directories-relative/reference/gcc-6/coverage.main.cpp.7d9c2f9355c8440401e02b7b21029098.html index 0e44ae264..c7efd8af8 100644 --- a/gcovr/tests/exclude-directories-relative/reference/gcc-6/coverage.main.cpp.7d9c2f9355c8440401e02b7b21029098.html +++ b/gcovr/tests/exclude-directories-relative/reference/gcc-6/coverage.main.cpp.7d9c2f9355c8440401e02b7b21029098.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:38:582021-09-21 19:12:36
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-directories-relative/reference/gcc-8/coverage.main.cpp.7d9c2f9355c8440401e02b7b21029098.html b/gcovr/tests/exclude-directories-relative/reference/gcc-8/coverage.main.cpp.7d9c2f9355c8440401e02b7b21029098.html index ceccf97c9..be0dd96e3 100644 --- a/gcovr/tests/exclude-directories-relative/reference/gcc-8/coverage.main.cpp.7d9c2f9355c8440401e02b7b21029098.html +++ b/gcovr/tests/exclude-directories-relative/reference/gcc-8/coverage.main.cpp.7d9c2f9355c8440401e02b7b21029098.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:422021-09-21 19:17:25
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-lines-by-pattern/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-lines-by-pattern/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 96835cdf0..be698ac3e 100644 --- a/gcovr/tests/exclude-lines-by-pattern/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-lines-by-pattern/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 19:44:462021-11-09 20:50:20
@@ -62,6 +62,50 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 10 + + called 1 time +
+ _ZL5panicv + + 5 + + not called +
+ main + + 20 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-lines-by-pattern/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-lines-by-pattern/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 356f6a812..458d5bdef 100644 --- a/gcovr/tests/exclude-lines-by-pattern/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-lines-by-pattern/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:232021-09-21 19:04:45
@@ -62,6 +62,50 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 10 + + called 1 time +
+ main + + 20 + + called 1 time +
+ panic() + + 5 + + not called +
+
+
diff --git a/gcovr/tests/exclude-lines-by-pattern/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-lines-by-pattern/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 5c53cb164..64d1105ac 100644 --- a/gcovr/tests/exclude-lines-by-pattern/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-lines-by-pattern/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:002021-09-21 19:12:37
@@ -62,6 +62,50 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 10 + + called 1 time +
+ main + + 20 + + called 1 time +
+ panic() + + 5 + + not called +
+
+
diff --git a/gcovr/tests/exclude-lines-by-pattern/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-lines-by-pattern/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index f0f1b1d3c..10823abba 100644 --- a/gcovr/tests/exclude-lines-by-pattern/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-lines-by-pattern/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:432021-09-21 19:17:26
@@ -62,6 +62,50 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 10 + + called 1 time +
+ main + + 20 + + called 1 time +
+ panic() + + 5 + + not called +
+
+
diff --git a/gcovr/tests/exclude-relative-from-unfiltered-tracefile/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-relative-from-unfiltered-tracefile/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index e15ccb982..5293366ed 100644 --- a/gcovr/tests/exclude-relative-from-unfiltered-tracefile/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-relative-from-unfiltered-tracefile/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:402021-09-21 19:22:11
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-relative-from-unfiltered-tracefile/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-relative-from-unfiltered-tracefile/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index d67d7300a..f46f344e8 100644 --- a/gcovr/tests/exclude-relative-from-unfiltered-tracefile/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-relative-from-unfiltered-tracefile/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:252021-09-21 19:04:47
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-relative-from-unfiltered-tracefile/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-relative-from-unfiltered-tracefile/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index d94bf8be8..6962aecb5 100644 --- a/gcovr/tests/exclude-relative-from-unfiltered-tracefile/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-relative-from-unfiltered-tracefile/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:022021-09-21 19:12:40
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-relative-from-unfiltered-tracefile/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-relative-from-unfiltered-tracefile/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index ff47f3f7e..fb5c52b3e 100644 --- a/gcovr/tests/exclude-relative-from-unfiltered-tracefile/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-relative-from-unfiltered-tracefile/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:452021-09-21 19:17:29
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-relative/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-relative/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index aba626eb0..3e78006ce 100644 --- a/gcovr/tests/exclude-relative/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-relative/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:392021-09-21 19:22:10
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-relative/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-relative/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 784f760e4..bdbf42059 100644 --- a/gcovr/tests/exclude-relative/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-relative/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:242021-09-21 19:04:46
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-relative/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-relative/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 9cd727ce1..887fdbf2a 100644 --- a/gcovr/tests/exclude-relative/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-relative/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:012021-09-21 19:12:38
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-relative/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-relative/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index be4ee8b84..4738af50a 100644 --- a/gcovr/tests/exclude-relative/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-relative/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:442021-09-21 19:17:27
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-throw-branches/reference/clang-10/coverage-excl-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-throw-branches/reference/clang-10/coverage-excl-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 013b14693..943ef0966 100644 --- a/gcovr/tests/exclude-throw-branches/reference/clang-10/coverage-excl-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-throw-branches/reference/clang-10/coverage-excl-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 19:44:502021-11-09 20:50:24
@@ -62,6 +62,83 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z22function_with_catchersi + + 24 + + called 1 time +
+ _Z23function_that_may_throwb + + 3 + + called 3 times +
+ _ZN4RAIIC2Eb + + 21 + + called 1 time +
+ _ZN4RAIID2Ev + + 22 + + called 1 time +
+ _ZNK4RAII21method_that_may_throwEv + + 16 + + called 1 time +
+ main + + 47 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-throw-branches/reference/clang-10/coverage-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-throw-branches/reference/clang-10/coverage-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 4eb9d6302..9638ae5bc 100644 --- a/gcovr/tests/exclude-throw-branches/reference/clang-10/coverage-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-throw-branches/reference/clang-10/coverage-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 19:44:502021-11-09 20:50:24
@@ -62,6 +62,83 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z22function_with_catchersi + + 24 + + called 1 time +
+ _Z23function_that_may_throwb + + 3 + + called 3 times +
+ _ZN4RAIIC2Eb + + 21 + + called 1 time +
+ _ZN4RAIID2Ev + + 22 + + called 1 time +
+ _ZNK4RAII21method_that_may_throwEv + + 16 + + called 1 time +
+ main + + 47 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-throw-branches/reference/gcc-5/coverage-excl-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-throw-branches/reference/gcc-5/coverage-excl-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 0b4cc1d74..98d4cd6a1 100644 --- a/gcovr/tests/exclude-throw-branches/reference/gcc-5/coverage-excl-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-throw-branches/reference/gcc-5/coverage-excl-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:272021-09-21 19:04:48
@@ -62,6 +62,83 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ RAII::RAII(bool) + + 21 + + called 1 time +
+ RAII::method_that_may_throw() const + + 16 + + called 1 time +
+ RAII::~RAII() + + 22 + + called 1 time +
+ function_that_may_throw(bool) + + 3 + + called 3 times +
+ function_with_catchers(int) + + 24 + + called 1 time +
+ main + + 47 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-throw-branches/reference/gcc-5/coverage-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-throw-branches/reference/gcc-5/coverage-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 1e7a25140..9ec400aef 100644 --- a/gcovr/tests/exclude-throw-branches/reference/gcc-5/coverage-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-throw-branches/reference/gcc-5/coverage-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:262021-09-21 19:04:48
@@ -62,6 +62,83 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ RAII::RAII(bool) + + 21 + + called 1 time +
+ RAII::method_that_may_throw() const + + 16 + + called 1 time +
+ RAII::~RAII() + + 22 + + called 1 time +
+ function_that_may_throw(bool) + + 3 + + called 3 times +
+ function_with_catchers(int) + + 24 + + called 1 time +
+ main + + 47 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-throw-branches/reference/gcc-6/coverage-excl-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-throw-branches/reference/gcc-6/coverage-excl-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 9ecb16d44..7b871c17e 100644 --- a/gcovr/tests/exclude-throw-branches/reference/gcc-6/coverage-excl-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-throw-branches/reference/gcc-6/coverage-excl-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:032021-09-21 19:12:41
@@ -62,6 +62,83 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ RAII::RAII(bool) + + 21 + + called 1 time +
+ RAII::method_that_may_throw() const + + 16 + + called 1 time +
+ RAII::~RAII() + + 22 + + called 1 time +
+ function_that_may_throw(bool) + + 3 + + called 3 times +
+ function_with_catchers(int) + + 24 + + called 1 time +
+ main + + 47 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-throw-branches/reference/gcc-6/coverage-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-throw-branches/reference/gcc-6/coverage-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html index aaab67ada..13bdfd02d 100644 --- a/gcovr/tests/exclude-throw-branches/reference/gcc-6/coverage-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-throw-branches/reference/gcc-6/coverage-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:032021-09-21 19:12:41
@@ -62,6 +62,83 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ RAII::RAII(bool) + + 21 + + called 1 time +
+ RAII::method_that_may_throw() const + + 16 + + called 1 time +
+ RAII::~RAII() + + 22 + + called 1 time +
+ function_that_may_throw(bool) + + 3 + + called 3 times +
+ function_with_catchers(int) + + 24 + + called 1 time +
+ main + + 47 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-throw-branches/reference/gcc-8/coverage-excl-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-throw-branches/reference/gcc-8/coverage-excl-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 90994dec8..c51871de2 100644 --- a/gcovr/tests/exclude-throw-branches/reference/gcc-8/coverage-excl-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-throw-branches/reference/gcc-8/coverage-excl-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:472021-09-21 19:17:30
@@ -62,6 +62,83 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ RAII::RAII(bool) + + 21 + + called 1 time +
+ RAII::method_that_may_throw() const + + 16 + + called 1 time +
+ RAII::~RAII() + + 22 + + called 1 time +
+ function_that_may_throw(bool) + + 3 + + called 3 times +
+ function_with_catchers(int) + + 24 + + called 1 time +
+ main + + 47 + + called 1 time +
+
+
diff --git a/gcovr/tests/exclude-throw-branches/reference/gcc-8/coverage-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/exclude-throw-branches/reference/gcc-8/coverage-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html index f4dbeb5c7..afe716bd6 100644 --- a/gcovr/tests/exclude-throw-branches/reference/gcc-8/coverage-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/exclude-throw-branches/reference/gcc-8/coverage-throw.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:462021-09-21 19:17:30
@@ -62,6 +62,83 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ RAII::RAII(bool) + + 21 + + called 1 time +
+ RAII::method_that_may_throw() const + + 16 + + called 1 time +
+ RAII::~RAII() + + 22 + + called 1 time +
+ function_that_may_throw(bool) + + 3 + + called 3 times +
+ function_with_catchers(int) + + 24 + + called 1 time +
+ main + + 47 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-absolute-from-unfiltered-tracefile/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/filter-absolute-from-unfiltered-tracefile/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index feb01bc63..3e32e9fe3 100644 --- a/gcovr/tests/filter-absolute-from-unfiltered-tracefile/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/filter-absolute-from-unfiltered-tracefile/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:442021-09-21 19:22:15
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-absolute-from-unfiltered-tracefile/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/filter-absolute-from-unfiltered-tracefile/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index a0307b512..255b76b13 100644 --- a/gcovr/tests/filter-absolute-from-unfiltered-tracefile/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/filter-absolute-from-unfiltered-tracefile/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:292021-09-21 19:04:51
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-absolute-from-unfiltered-tracefile/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/filter-absolute-from-unfiltered-tracefile/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 2f0b94842..32798b82b 100644 --- a/gcovr/tests/filter-absolute-from-unfiltered-tracefile/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/filter-absolute-from-unfiltered-tracefile/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:062021-09-21 19:12:44
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-absolute-from-unfiltered-tracefile/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/filter-absolute-from-unfiltered-tracefile/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 0c30f33d4..c07cb4e07 100644 --- a/gcovr/tests/filter-absolute-from-unfiltered-tracefile/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/filter-absolute-from-unfiltered-tracefile/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:492021-09-21 19:17:33
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-absolute/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/filter-absolute/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 563691d55..e1209cf1c 100644 --- a/gcovr/tests/filter-absolute/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/filter-absolute/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:432021-09-21 19:22:14
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-absolute/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/filter-absolute/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 7501e5727..3167a55c2 100644 --- a/gcovr/tests/filter-absolute/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/filter-absolute/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:282021-09-21 19:04:50
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-absolute/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/filter-absolute/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index a76da46d8..a52d89057 100644 --- a/gcovr/tests/filter-absolute/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/filter-absolute/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:052021-09-21 19:12:42
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-absolute/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/filter-absolute/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 431b88f79..a34895b89 100644 --- a/gcovr/tests/filter-absolute/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/filter-absolute/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:482021-09-21 19:17:32
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-from-unfiltered-tracefile/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/filter-relative-from-unfiltered-tracefile/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 8fa088dea..828a75d7f 100644 --- a/gcovr/tests/filter-relative-from-unfiltered-tracefile/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/filter-relative-from-unfiltered-tracefile/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:472021-09-21 19:22:18
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-from-unfiltered-tracefile/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/filter-relative-from-unfiltered-tracefile/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 267ed6455..0ebb2578a 100644 --- a/gcovr/tests/filter-relative-from-unfiltered-tracefile/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/filter-relative-from-unfiltered-tracefile/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:312021-09-21 19:04:53
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-from-unfiltered-tracefile/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/filter-relative-from-unfiltered-tracefile/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index bdcd566e2..978ac2031 100644 --- a/gcovr/tests/filter-relative-from-unfiltered-tracefile/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/filter-relative-from-unfiltered-tracefile/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:082021-09-21 19:12:46
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-from-unfiltered-tracefile/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/filter-relative-from-unfiltered-tracefile/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 9cdefd343..05102fae0 100644 --- a/gcovr/tests/filter-relative-from-unfiltered-tracefile/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/filter-relative-from-unfiltered-tracefile/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:522021-09-21 19:17:35
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/clang-10/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html b/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/clang-10/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html index d2c7d2439..4794e38a8 100644 --- a/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/clang-10/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html +++ b/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/clang-10/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:492021-09-21 19:22:20
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 4 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/clang-10/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html b/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/clang-10/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html index be1c0d0cf..1c7ff410b 100644 --- a/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/clang-10/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html +++ b/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/clang-10/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:492021-09-21 19:22:20
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3yesi + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-5/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html b/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-5/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html index 6882e02e2..715d3f45f 100644 --- a/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-5/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html +++ b/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-5/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:332021-09-21 19:04:56
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 4 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-5/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html b/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-5/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html index 457cb68d3..3d108ab89 100644 --- a/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-5/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html +++ b/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-5/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:332021-09-21 19:04:56
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ yes(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-6/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html b/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-6/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html index 4d82cb775..5fb1a982d 100644 --- a/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-6/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html +++ b/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-6/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:112021-09-21 19:12:48
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 4 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-6/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html b/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-6/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html index 9d4a7734f..b2daa05fb 100644 --- a/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-6/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html +++ b/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-6/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:112021-09-21 19:12:48
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ yes(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-8/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html b/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-8/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html index b7f4a0e2d..565c4d9ea 100644 --- a/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-8/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html +++ b/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-8/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:542021-09-21 19:17:38
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 4 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-8/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html b/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-8/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html index 5f8b961b7..ffe17b123 100644 --- a/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-8/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html +++ b/gcovr/tests/filter-relative-lib-from-unfiltered-tracefile/reference/gcc-8/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:542021-09-21 19:17:38
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ yes(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-lib/reference/clang-10/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html b/gcovr/tests/filter-relative-lib/reference/clang-10/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html index d5e367310..12269ef9a 100644 --- a/gcovr/tests/filter-relative-lib/reference/clang-10/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html +++ b/gcovr/tests/filter-relative-lib/reference/clang-10/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:482021-09-21 19:22:19
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 4 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-lib/reference/clang-10/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html b/gcovr/tests/filter-relative-lib/reference/clang-10/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html index 04981603f..70fdb744b 100644 --- a/gcovr/tests/filter-relative-lib/reference/clang-10/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html +++ b/gcovr/tests/filter-relative-lib/reference/clang-10/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:482021-09-21 19:22:19
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3yesi + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-lib/reference/gcc-5/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html b/gcovr/tests/filter-relative-lib/reference/gcc-5/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html index 370835622..bf68cf6e3 100644 --- a/gcovr/tests/filter-relative-lib/reference/gcc-5/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html +++ b/gcovr/tests/filter-relative-lib/reference/gcc-5/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:322021-09-21 19:04:54
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 4 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-lib/reference/gcc-5/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html b/gcovr/tests/filter-relative-lib/reference/gcc-5/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html index b50e67718..6eb5c1899 100644 --- a/gcovr/tests/filter-relative-lib/reference/gcc-5/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html +++ b/gcovr/tests/filter-relative-lib/reference/gcc-5/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:322021-09-21 19:04:54
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ yes(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-lib/reference/gcc-6/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html b/gcovr/tests/filter-relative-lib/reference/gcc-6/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html index 621fd28a7..9d2f21c55 100644 --- a/gcovr/tests/filter-relative-lib/reference/gcc-6/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html +++ b/gcovr/tests/filter-relative-lib/reference/gcc-6/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:092021-09-21 19:12:47
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 4 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-lib/reference/gcc-6/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html b/gcovr/tests/filter-relative-lib/reference/gcc-6/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html index f8cc77395..db69dc76e 100644 --- a/gcovr/tests/filter-relative-lib/reference/gcc-6/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html +++ b/gcovr/tests/filter-relative-lib/reference/gcc-6/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:092021-09-21 19:12:47
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ yes(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-lib/reference/gcc-8/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html b/gcovr/tests/filter-relative-lib/reference/gcc-8/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html index 0f8999ce6..a8d87a906 100644 --- a/gcovr/tests/filter-relative-lib/reference/gcc-8/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html +++ b/gcovr/tests/filter-relative-lib/reference/gcc-8/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:532021-09-21 19:17:36
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 4 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative-lib/reference/gcc-8/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html b/gcovr/tests/filter-relative-lib/reference/gcc-8/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html index 8afb7076c..277473e35 100644 --- a/gcovr/tests/filter-relative-lib/reference/gcc-8/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html +++ b/gcovr/tests/filter-relative-lib/reference/gcc-8/coverage.yes.cpp.37f9f505d6c6aaab5562071eb5f4d9da.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:532021-09-21 19:17:36
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ yes(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/filter-relative/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index da709bab8..b7080ef27 100644 --- a/gcovr/tests/filter-relative/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/filter-relative/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 13:58:452021-09-21 19:22:16
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/filter-relative/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 714fe7be1..4af2b7412 100644 --- a/gcovr/tests/filter-relative/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/filter-relative/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:302021-09-21 19:04:52
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/filter-relative/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 9c29447e4..9384d8750 100644 --- a/gcovr/tests/filter-relative/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/filter-relative/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:072021-09-21 19:12:45
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/filter-relative/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/filter-relative/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 56b4567a0..3b6b65f02 100644 --- a/gcovr/tests/filter-relative/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/filter-relative/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:502021-09-21 19:17:34
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-default/reference/clang-10/coverage.css b/gcovr/tests/html-default/reference/clang-10/coverage.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/html-default/reference/clang-10/coverage.css +++ b/gcovr/tests/html-default/reference/clang-10/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-default/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-default/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index cab9d5791..758e278a6 100644 --- a/gcovr/tests/html-default/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-default/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:392021-09-21 19:22:21
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-default/reference/gcc-5/coverage.css b/gcovr/tests/html-default/reference/gcc-5/coverage.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/html-default/reference/gcc-5/coverage.css +++ b/gcovr/tests/html-default/reference/gcc-5/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-default/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-default/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index d2832b18b..ff64d7b6c 100644 --- a/gcovr/tests/html-default/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-default/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:342021-09-21 19:04:57
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-default/reference/gcc-6/coverage.css b/gcovr/tests/html-default/reference/gcc-6/coverage.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/html-default/reference/gcc-6/coverage.css +++ b/gcovr/tests/html-default/reference/gcc-6/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-default/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-default/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 0bf80d1a2..fe4e920dd 100644 --- a/gcovr/tests/html-default/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-default/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:122021-09-21 19:12:49
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-default/reference/gcc-8/coverage.css b/gcovr/tests/html-default/reference/gcc-8/coverage.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/html-default/reference/gcc-8/coverage.css +++ b/gcovr/tests/html-default/reference/gcc-8/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-default/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-default/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index e82b5e103..9caf1b6bc 100644 --- a/gcovr/tests/html-default/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-default/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:552021-09-21 19:17:39
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-encoding-cp1252/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-encoding-cp1252/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 0098953c8..85065e584 100644 --- a/gcovr/tests/html-encoding-cp1252/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-encoding-cp1252/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:392021-09-21 19:22:21
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-encoding-cp1252/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-encoding-cp1252/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index b822ead5f..4eda964d6 100644 --- a/gcovr/tests/html-encoding-cp1252/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-encoding-cp1252/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:352021-09-21 19:04:57
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-encoding-cp1252/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-encoding-cp1252/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index e66abfff0..284a30df2 100644 --- a/gcovr/tests/html-encoding-cp1252/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-encoding-cp1252/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:122021-09-21 19:12:50
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-encoding-cp1252/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-encoding-cp1252/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 7318a8f80..5fb41a0b4 100644 --- a/gcovr/tests/html-encoding-cp1252/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-encoding-cp1252/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:552021-09-21 19:17:39
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-encoding-iso-8859-15/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-encoding-iso-8859-15/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index c9865d644..550b5a67f 100644 --- a/gcovr/tests/html-encoding-iso-8859-15/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-encoding-iso-8859-15/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:402021-09-21 19:22:22
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-encoding-iso-8859-15/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-encoding-iso-8859-15/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 46480c2d1..9e892c1f2 100644 --- a/gcovr/tests/html-encoding-iso-8859-15/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-encoding-iso-8859-15/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:352021-09-21 19:04:57
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-encoding-iso-8859-15/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-encoding-iso-8859-15/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 2abb6c856..c853c95fe 100644 --- a/gcovr/tests/html-encoding-iso-8859-15/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-encoding-iso-8859-15/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:122021-09-21 19:12:50
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-encoding-iso-8859-15/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-encoding-iso-8859-15/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index e616d1964..87f0a1ef2 100644 --- a/gcovr/tests/html-encoding-iso-8859-15/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-encoding-iso-8859-15/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:562021-09-21 19:17:40
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-high-100/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-high-100/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index b1a1b77e1..dffee7ccc 100644 --- a/gcovr/tests/html-high-100/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-high-100/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:402021-09-21 19:22:22
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-high-100/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-high-100/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index b6a026230..6ce764962 100644 --- a/gcovr/tests/html-high-100/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-high-100/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:362021-09-21 19:04:58
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-high-100/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-high-100/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 7d9551999..1194735ae 100644 --- a/gcovr/tests/html-high-100/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-high-100/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:132021-09-21 19:12:51
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-high-100/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-high-100/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 5a4b1933d..3fc3089c2 100644 --- a/gcovr/tests/html-high-100/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-high-100/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:562021-09-21 19:17:40
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-high-75/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-high-75/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index d795de33b..7d655b6b4 100644 --- a/gcovr/tests/html-high-75/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-high-75/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:412021-09-21 19:22:23
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-high-75/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-high-75/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index b6a026230..6ce764962 100644 --- a/gcovr/tests/html-high-75/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-high-75/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:362021-09-21 19:04:58
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-high-75/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-high-75/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 7d9551999..1194735ae 100644 --- a/gcovr/tests/html-high-75/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-high-75/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:132021-09-21 19:12:51
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-high-75/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-high-75/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 6ebe6ce03..74b7827b7 100644 --- a/gcovr/tests/html-high-75/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-high-75/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:572021-09-21 19:17:41
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-medium-100-high-100/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-medium-100-high-100/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index d795de33b..7d655b6b4 100644 --- a/gcovr/tests/html-medium-100-high-100/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-medium-100-high-100/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:412021-09-21 19:22:23
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-medium-100-high-100/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-medium-100-high-100/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 56462166d..9df42ba2a 100644 --- a/gcovr/tests/html-medium-100-high-100/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-medium-100-high-100/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:372021-09-21 19:04:59
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-medium-100-high-100/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-medium-100-high-100/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index e39efd50a..e8856cc02 100644 --- a/gcovr/tests/html-medium-100-high-100/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-medium-100-high-100/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:142021-09-21 19:12:52
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-medium-100-high-100/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-medium-100-high-100/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 6ebe6ce03..74b7827b7 100644 --- a/gcovr/tests/html-medium-100-high-100/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-medium-100-high-100/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:572021-09-21 19:17:41
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-medium-50/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-medium-50/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 08a1cb936..150d1d62f 100644 --- a/gcovr/tests/html-medium-50/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-medium-50/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:422021-09-21 19:22:24
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-medium-50/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-medium-50/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 56462166d..9df42ba2a 100644 --- a/gcovr/tests/html-medium-50/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-medium-50/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:372021-09-21 19:04:59
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-medium-50/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-medium-50/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index e39efd50a..e8856cc02 100644 --- a/gcovr/tests/html-medium-50/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-medium-50/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:142021-09-21 19:12:52
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-medium-50/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-medium-50/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 4066070f4..b6ffe742e 100644 --- a/gcovr/tests/html-medium-50/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-medium-50/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:582021-09-21 19:17:42
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-no-syntax-highlighting/reference/clang-10/coverage.css b/gcovr/tests/html-no-syntax-highlighting/reference/clang-10/coverage.css index 002d5a228..af89268f4 100644 --- a/gcovr/tests/html-no-syntax-highlighting/reference/clang-10/coverage.css +++ b/gcovr/tests/html-no-syntax-highlighting/reference/clang-10/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-no-syntax-highlighting/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-no-syntax-highlighting/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 4fc08d609..07a6b6c8f 100644 --- a/gcovr/tests/html-no-syntax-highlighting/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-no-syntax-highlighting/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:422021-09-21 19:22:24
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-no-syntax-highlighting/reference/gcc-5/coverage.css b/gcovr/tests/html-no-syntax-highlighting/reference/gcc-5/coverage.css index 002d5a228..af89268f4 100644 --- a/gcovr/tests/html-no-syntax-highlighting/reference/gcc-5/coverage.css +++ b/gcovr/tests/html-no-syntax-highlighting/reference/gcc-5/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-no-syntax-highlighting/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-no-syntax-highlighting/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 4add683f0..307202195 100644 --- a/gcovr/tests/html-no-syntax-highlighting/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-no-syntax-highlighting/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:382021-09-21 19:05:00
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-no-syntax-highlighting/reference/gcc-6/coverage.css b/gcovr/tests/html-no-syntax-highlighting/reference/gcc-6/coverage.css index 002d5a228..af89268f4 100644 --- a/gcovr/tests/html-no-syntax-highlighting/reference/gcc-6/coverage.css +++ b/gcovr/tests/html-no-syntax-highlighting/reference/gcc-6/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-no-syntax-highlighting/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-no-syntax-highlighting/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 58a3813d0..0006da404 100644 --- a/gcovr/tests/html-no-syntax-highlighting/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-no-syntax-highlighting/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:152021-09-21 19:12:53
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-no-syntax-highlighting/reference/gcc-8/coverage.css b/gcovr/tests/html-no-syntax-highlighting/reference/gcc-8/coverage.css index 002d5a228..af89268f4 100644 --- a/gcovr/tests/html-no-syntax-highlighting/reference/gcc-8/coverage.css +++ b/gcovr/tests/html-no-syntax-highlighting/reference/gcc-8/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-no-syntax-highlighting/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-no-syntax-highlighting/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 55875029e..11603a0b9 100644 --- a/gcovr/tests/html-no-syntax-highlighting/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-no-syntax-highlighting/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:582021-09-21 19:17:42
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-source-encoding-cp1252/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-source-encoding-cp1252/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 219b2487b..079a5d56a 100644 --- a/gcovr/tests/html-source-encoding-cp1252/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-source-encoding-cp1252/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:382021-09-21 19:05:00
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-source-encoding-cp1252/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-source-encoding-cp1252/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 0ca31220d..f8754be21 100644 --- a/gcovr/tests/html-source-encoding-cp1252/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-source-encoding-cp1252/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:152021-09-21 19:12:53
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-source-encoding-cp1252/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-source-encoding-cp1252/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 1368385b0..f000ac6d4 100644 --- a/gcovr/tests/html-source-encoding-cp1252/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-source-encoding-cp1252/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:592021-09-21 19:17:43
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-source-encoding-utf8/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-source-encoding-utf8/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index c46801786..d0969aae0 100644 --- a/gcovr/tests/html-source-encoding-utf8/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-source-encoding-utf8/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:432021-09-21 19:22:25
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-source-encoding-utf8/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-source-encoding-utf8/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 6c90be251..a049a425a 100644 --- a/gcovr/tests/html-source-encoding-utf8/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-source-encoding-utf8/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:392021-09-21 19:05:01
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-source-encoding-utf8/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-source-encoding-utf8/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index f0ccf0f86..5afac1173 100644 --- a/gcovr/tests/html-source-encoding-utf8/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-source-encoding-utf8/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:162021-09-21 19:12:54
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-source-encoding-utf8/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-source-encoding-utf8/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 90f982821..cc755a3e1 100644 --- a/gcovr/tests/html-source-encoding-utf8/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-source-encoding-utf8/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:35:592021-09-21 19:17:43
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-tab-size-2/reference/clang-10/coverage.css b/gcovr/tests/html-tab-size-2/reference/clang-10/coverage.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/html-tab-size-2/reference/clang-10/coverage.css +++ b/gcovr/tests/html-tab-size-2/reference/clang-10/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-tab-size-2/reference/gcc-5/coverage.css b/gcovr/tests/html-tab-size-2/reference/gcc-5/coverage.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/html-tab-size-2/reference/gcc-5/coverage.css +++ b/gcovr/tests/html-tab-size-2/reference/gcc-5/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-tab-size-2/reference/gcc-6/coverage.css b/gcovr/tests/html-tab-size-2/reference/gcc-6/coverage.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/html-tab-size-2/reference/gcc-6/coverage.css +++ b/gcovr/tests/html-tab-size-2/reference/gcc-6/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-tab-size-2/reference/gcc-8/coverage.css b/gcovr/tests/html-tab-size-2/reference/gcc-8/coverage.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/html-tab-size-2/reference/gcc-8/coverage.css +++ b/gcovr/tests/html-tab-size-2/reference/gcc-8/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-themes/reference/clang-10/coverage.blue.css b/gcovr/tests/html-themes/reference/clang-10/coverage.blue.css index 14c169c0b..fd22883e4 100644 --- a/gcovr/tests/html-themes/reference/clang-10/coverage.blue.css +++ b/gcovr/tests/html-themes/reference/clang-10/coverage.blue.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-themes/reference/clang-10/coverage.blue.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-themes/reference/clang-10/coverage.blue.main.cpp.118fcbaaba162ba17933c7893247df3a.html index db564b40c..18080ae2e 100644 --- a/gcovr/tests/html-themes/reference/clang-10/coverage.blue.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-themes/reference/clang-10/coverage.blue.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 19:45:042021-11-09 20:50:38
@@ -62,6 +62,83 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z22function_with_catchersi + + 24 + + called 1 time +
+ _Z23function_that_may_throwb + + 3 + + called 3 times +
+ _ZN4RAIIC2Eb + + 21 + + called 1 time +
+ _ZN4RAIID2Ev + + 22 + + called 1 time +
+ _ZNK4RAII21method_that_may_throwEv + + 16 + + called 1 time +
+ main + + 49 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-themes/reference/clang-10/coverage.green.css b/gcovr/tests/html-themes/reference/clang-10/coverage.green.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/html-themes/reference/clang-10/coverage.green.css +++ b/gcovr/tests/html-themes/reference/clang-10/coverage.green.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-themes/reference/clang-10/coverage.green.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-themes/reference/clang-10/coverage.green.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 32caac168..1b7c9e994 100644 --- a/gcovr/tests/html-themes/reference/clang-10/coverage.green.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-themes/reference/clang-10/coverage.green.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 19:45:042021-11-09 20:50:38
@@ -62,6 +62,83 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z22function_with_catchersi + + 24 + + called 1 time +
+ _Z23function_that_may_throwb + + 3 + + called 3 times +
+ _ZN4RAIIC2Eb + + 21 + + called 1 time +
+ _ZN4RAIID2Ev + + 22 + + called 1 time +
+ _ZNK4RAII21method_that_may_throwEv + + 16 + + called 1 time +
+ main + + 49 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-themes/reference/gcc-5/coverage.blue.css b/gcovr/tests/html-themes/reference/gcc-5/coverage.blue.css index 14c169c0b..fd22883e4 100644 --- a/gcovr/tests/html-themes/reference/gcc-5/coverage.blue.css +++ b/gcovr/tests/html-themes/reference/gcc-5/coverage.blue.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-themes/reference/gcc-5/coverage.blue.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-themes/reference/gcc-5/coverage.blue.main.cpp.118fcbaaba162ba17933c7893247df3a.html index d42df2f4a..04d4aa566 100644 --- a/gcovr/tests/html-themes/reference/gcc-5/coverage.blue.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-themes/reference/gcc-5/coverage.blue.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:402021-09-21 19:05:02
@@ -62,6 +62,83 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ RAII::RAII(bool) + + 21 + + called 1 time +
+ RAII::method_that_may_throw() const + + 16 + + called 1 time +
+ RAII::~RAII() + + 22 + + called 1 time +
+ function_that_may_throw(bool) + + 3 + + called 3 times +
+ function_with_catchers(int) + + 24 + + called 1 time +
+ main + + 49 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-themes/reference/gcc-5/coverage.green.css b/gcovr/tests/html-themes/reference/gcc-5/coverage.green.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/html-themes/reference/gcc-5/coverage.green.css +++ b/gcovr/tests/html-themes/reference/gcc-5/coverage.green.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-themes/reference/gcc-5/coverage.green.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-themes/reference/gcc-5/coverage.green.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 6ec255ce9..6e4cae230 100644 --- a/gcovr/tests/html-themes/reference/gcc-5/coverage.green.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-themes/reference/gcc-5/coverage.green.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:402021-09-21 19:05:02
@@ -62,6 +62,83 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ RAII::RAII(bool) + + 21 + + called 1 time +
+ RAII::method_that_may_throw() const + + 16 + + called 1 time +
+ RAII::~RAII() + + 22 + + called 1 time +
+ function_that_may_throw(bool) + + 3 + + called 3 times +
+ function_with_catchers(int) + + 24 + + called 1 time +
+ main + + 49 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-themes/reference/gcc-6/coverage.blue.css b/gcovr/tests/html-themes/reference/gcc-6/coverage.blue.css index 14c169c0b..fd22883e4 100644 --- a/gcovr/tests/html-themes/reference/gcc-6/coverage.blue.css +++ b/gcovr/tests/html-themes/reference/gcc-6/coverage.blue.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-themes/reference/gcc-6/coverage.blue.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-themes/reference/gcc-6/coverage.blue.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 7e11d3cd0..129a1e3d6 100644 --- a/gcovr/tests/html-themes/reference/gcc-6/coverage.blue.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-themes/reference/gcc-6/coverage.blue.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:172021-09-21 19:12:55
@@ -62,6 +62,83 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ RAII::RAII(bool) + + 21 + + called 1 time +
+ RAII::method_that_may_throw() const + + 16 + + called 1 time +
+ RAII::~RAII() + + 22 + + called 1 time +
+ function_that_may_throw(bool) + + 3 + + called 3 times +
+ function_with_catchers(int) + + 24 + + called 1 time +
+ main + + 49 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-themes/reference/gcc-6/coverage.green.css b/gcovr/tests/html-themes/reference/gcc-6/coverage.green.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/html-themes/reference/gcc-6/coverage.green.css +++ b/gcovr/tests/html-themes/reference/gcc-6/coverage.green.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-themes/reference/gcc-6/coverage.green.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-themes/reference/gcc-6/coverage.green.main.cpp.118fcbaaba162ba17933c7893247df3a.html index cf8c346c9..da365dc2c 100644 --- a/gcovr/tests/html-themes/reference/gcc-6/coverage.green.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-themes/reference/gcc-6/coverage.green.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:172021-09-21 19:12:54
@@ -62,6 +62,83 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ RAII::RAII(bool) + + 21 + + called 1 time +
+ RAII::method_that_may_throw() const + + 16 + + called 1 time +
+ RAII::~RAII() + + 22 + + called 1 time +
+ function_that_may_throw(bool) + + 3 + + called 3 times +
+ function_with_catchers(int) + + 24 + + called 1 time +
+ main + + 49 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-themes/reference/gcc-8/coverage.blue.css b/gcovr/tests/html-themes/reference/gcc-8/coverage.blue.css index 14c169c0b..fd22883e4 100644 --- a/gcovr/tests/html-themes/reference/gcc-8/coverage.blue.css +++ b/gcovr/tests/html-themes/reference/gcc-8/coverage.blue.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-themes/reference/gcc-8/coverage.blue.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-themes/reference/gcc-8/coverage.blue.main.cpp.118fcbaaba162ba17933c7893247df3a.html index e21b9f386..c2ad83da8 100644 --- a/gcovr/tests/html-themes/reference/gcc-8/coverage.blue.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-themes/reference/gcc-8/coverage.blue.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:012021-09-21 19:17:44
@@ -62,6 +62,83 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ RAII::RAII(bool) + + 21 + + called 1 time +
+ RAII::method_that_may_throw() const + + 16 + + called 1 time +
+ RAII::~RAII() + + 22 + + called 1 time +
+ function_that_may_throw(bool) + + 3 + + called 3 times +
+ function_with_catchers(int) + + 24 + + called 1 time +
+ main + + 49 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-themes/reference/gcc-8/coverage.green.css b/gcovr/tests/html-themes/reference/gcc-8/coverage.green.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/html-themes/reference/gcc-8/coverage.green.css +++ b/gcovr/tests/html-themes/reference/gcc-8/coverage.green.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/html-themes/reference/gcc-8/coverage.green.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-themes/reference/gcc-8/coverage.green.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 8ddd506e7..9e09eaee8 100644 --- a/gcovr/tests/html-themes/reference/gcc-8/coverage.green.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-themes/reference/gcc-8/coverage.green.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:002021-09-21 19:17:44
@@ -62,6 +62,83 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ RAII::RAII(bool) + + 21 + + called 1 time +
+ RAII::method_that_may_throw() const + + 16 + + called 1 time +
+ RAII::~RAII() + + 22 + + called 1 time +
+ function_that_may_throw(bool) + + 3 + + called 3 times +
+ function_with_catchers(int) + + 24 + + called 1 time +
+ main + + 49 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-title/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-title/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 543bdfab4..9d838e822 100644 --- a/gcovr/tests/html-title/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-title/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

Title of report

- +
Date:2021-09-06 14:37:452021-09-21 19:22:27
@@ -62,6 +62,28 @@

Title of report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-title/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-title/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index d91db6c30..56c7d7d4b 100644 --- a/gcovr/tests/html-title/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-title/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

Title of report

- +
Date:2021-07-19 19:32:402021-09-21 19:05:02
@@ -62,6 +62,28 @@

Title of report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-title/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-title/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 462e179d8..ab9997845 100644 --- a/gcovr/tests/html-title/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-title/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

Title of report

- +
Date:2021-07-19 19:39:172021-09-21 19:12:55
@@ -62,6 +62,28 @@

Title of report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/html-title/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/html-title/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index dc07ac46b..385b34e17 100644 --- a/gcovr/tests/html-title/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/html-title/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

Title of report

- +
Date:2021-07-19 19:36:012021-09-21 19:17:45
@@ -62,6 +62,28 @@

Title of report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/clang-10/coverage.file1.cpp.46c73eeafdf12f5341eb32413a90169e.html b/gcovr/tests/linked/reference/clang-10/coverage.file1.cpp.46c73eeafdf12f5341eb32413a90169e.html index 0f4d23f17..75a4ab52f 100644 --- a/gcovr/tests/linked/reference/clang-10/coverage.file1.cpp.46c73eeafdf12f5341eb32413a90169e.html +++ b/gcovr/tests/linked/reference/clang-10/coverage.file1.cpp.46c73eeafdf12f5341eb32413a90169e.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:462021-09-21 19:22:28
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/clang-10/coverage.file2.cpp.eaea841cc07a0c33cf11763308ec1d22.html b/gcovr/tests/linked/reference/clang-10/coverage.file2.cpp.eaea841cc07a0c33cf11763308ec1d22.html index 4c14c3393..5948d8bd3 100644 --- a/gcovr/tests/linked/reference/clang-10/coverage.file2.cpp.eaea841cc07a0c33cf11763308ec1d22.html +++ b/gcovr/tests/linked/reference/clang-10/coverage.file2.cpp.eaea841cc07a0c33cf11763308ec1d22.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:462021-09-21 19:22:28
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3barv + + 1 + + called 1 time +
+ _Z4bar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/linked/reference/clang-10/coverage.file3.cpp.05c5eb887e5d0a7183edce836a6718cd.html b/gcovr/tests/linked/reference/clang-10/coverage.file3.cpp.05c5eb887e5d0a7183edce836a6718cd.html index 65619641a..95d249015 100644 --- a/gcovr/tests/linked/reference/clang-10/coverage.file3.cpp.05c5eb887e5d0a7183edce836a6718cd.html +++ b/gcovr/tests/linked/reference/clang-10/coverage.file3.cpp.05c5eb887e5d0a7183edce836a6718cd.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 19:45:062021-11-09 20:50:41
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z7fourbarv + + 1 + + called 1 time +
+ _Z8fourbar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/linked/reference/clang-10/coverage.file4.cpp.2b76827d4721ef11f88982191f3ee8c1.html b/gcovr/tests/linked/reference/clang-10/coverage.file4.cpp.2b76827d4721ef11f88982191f3ee8c1.html index 110733600..181fd4794 100644 --- a/gcovr/tests/linked/reference/clang-10/coverage.file4.cpp.2b76827d4721ef11f88982191f3ee8c1.html +++ b/gcovr/tests/linked/reference/clang-10/coverage.file4.cpp.2b76827d4721ef11f88982191f3ee8c1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:462021-09-21 19:22:28
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z6foobari + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/clang-10/coverage.file5.cpp.cde4c7e07f79b4a315bd6b72e5bfe2dd.html b/gcovr/tests/linked/reference/clang-10/coverage.file5.cpp.cde4c7e07f79b4a315bd6b72e5bfe2dd.html index 652d022a6..a6e80d6bc 100644 --- a/gcovr/tests/linked/reference/clang-10/coverage.file5.cpp.cde4c7e07f79b4a315bd6b72e5bfe2dd.html +++ b/gcovr/tests/linked/reference/clang-10/coverage.file5.cpp.cde4c7e07f79b4a315bd6b72e5bfe2dd.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:462021-09-21 19:22:28
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo5i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/clang-10/coverage.file6.cpp.37f4b31e3e12086d7b0f11d140944edf.html b/gcovr/tests/linked/reference/clang-10/coverage.file6.cpp.37f4b31e3e12086d7b0f11d140944edf.html index 0975ee371..be427580e 100644 --- a/gcovr/tests/linked/reference/clang-10/coverage.file6.cpp.37f4b31e3e12086d7b0f11d140944edf.html +++ b/gcovr/tests/linked/reference/clang-10/coverage.file6.cpp.37f4b31e3e12086d7b0f11d140944edf.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:462021-09-21 19:22:28
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo6i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/clang-10/coverage.file7.cpp.f551d0ebeb9c429aba16ade7468659dd.html b/gcovr/tests/linked/reference/clang-10/coverage.file7.cpp.f551d0ebeb9c429aba16ade7468659dd.html index 2fd5383cc..3a8f3c7a3 100644 --- a/gcovr/tests/linked/reference/clang-10/coverage.file7.cpp.f551d0ebeb9c429aba16ade7468659dd.html +++ b/gcovr/tests/linked/reference/clang-10/coverage.file7.cpp.f551d0ebeb9c429aba16ade7468659dd.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:462021-09-21 19:22:28
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z9uncoveredv + + 1 + + not called +
+
+
diff --git a/gcovr/tests/linked/reference/clang-10/coverage.main.cpp.13fb8fc771195717481a98e084ed0848.html b/gcovr/tests/linked/reference/clang-10/coverage.main.cpp.13fb8fc771195717481a98e084ed0848.html index d17584324..e3247f026 100644 --- a/gcovr/tests/linked/reference/clang-10/coverage.main.cpp.13fb8fc771195717481a98e084ed0848.html +++ b/gcovr/tests/linked/reference/clang-10/coverage.main.cpp.13fb8fc771195717481a98e084ed0848.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:462021-09-21 19:22:28
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-5/coverage.file1.cpp.46c73eeafdf12f5341eb32413a90169e.html b/gcovr/tests/linked/reference/gcc-5/coverage.file1.cpp.46c73eeafdf12f5341eb32413a90169e.html index 1ec008f69..a90b0941f 100644 --- a/gcovr/tests/linked/reference/gcc-5/coverage.file1.cpp.46c73eeafdf12f5341eb32413a90169e.html +++ b/gcovr/tests/linked/reference/gcc-5/coverage.file1.cpp.46c73eeafdf12f5341eb32413a90169e.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:422021-09-21 19:05:04
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-5/coverage.file2.cpp.eaea841cc07a0c33cf11763308ec1d22.html b/gcovr/tests/linked/reference/gcc-5/coverage.file2.cpp.eaea841cc07a0c33cf11763308ec1d22.html index 07709e108..a749dd2a7 100644 --- a/gcovr/tests/linked/reference/gcc-5/coverage.file2.cpp.eaea841cc07a0c33cf11763308ec1d22.html +++ b/gcovr/tests/linked/reference/gcc-5/coverage.file2.cpp.eaea841cc07a0c33cf11763308ec1d22.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:422021-09-21 19:05:04
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-5/coverage.file3.cpp.05c5eb887e5d0a7183edce836a6718cd.html b/gcovr/tests/linked/reference/gcc-5/coverage.file3.cpp.05c5eb887e5d0a7183edce836a6718cd.html index f936c0c69..60ff46b75 100644 --- a/gcovr/tests/linked/reference/gcc-5/coverage.file3.cpp.05c5eb887e5d0a7183edce836a6718cd.html +++ b/gcovr/tests/linked/reference/gcc-5/coverage.file3.cpp.05c5eb887e5d0a7183edce836a6718cd.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:422021-09-21 19:05:04
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-5/coverage.file4.cpp.2b76827d4721ef11f88982191f3ee8c1.html b/gcovr/tests/linked/reference/gcc-5/coverage.file4.cpp.2b76827d4721ef11f88982191f3ee8c1.html index 48352e3ab..35ce3dd9c 100644 --- a/gcovr/tests/linked/reference/gcc-5/coverage.file4.cpp.2b76827d4721ef11f88982191f3ee8c1.html +++ b/gcovr/tests/linked/reference/gcc-5/coverage.file4.cpp.2b76827d4721ef11f88982191f3ee8c1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:422021-09-21 19:05:04
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foobar(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-5/coverage.file5.cpp.cde4c7e07f79b4a315bd6b72e5bfe2dd.html b/gcovr/tests/linked/reference/gcc-5/coverage.file5.cpp.cde4c7e07f79b4a315bd6b72e5bfe2dd.html index 83e4be43c..b40e0790d 100644 --- a/gcovr/tests/linked/reference/gcc-5/coverage.file5.cpp.cde4c7e07f79b4a315bd6b72e5bfe2dd.html +++ b/gcovr/tests/linked/reference/gcc-5/coverage.file5.cpp.cde4c7e07f79b4a315bd6b72e5bfe2dd.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:422021-09-21 19:05:04
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo5(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-5/coverage.file6.cpp.37f4b31e3e12086d7b0f11d140944edf.html b/gcovr/tests/linked/reference/gcc-5/coverage.file6.cpp.37f4b31e3e12086d7b0f11d140944edf.html index 5e79b93ce..f1168c830 100644 --- a/gcovr/tests/linked/reference/gcc-5/coverage.file6.cpp.37f4b31e3e12086d7b0f11d140944edf.html +++ b/gcovr/tests/linked/reference/gcc-5/coverage.file6.cpp.37f4b31e3e12086d7b0f11d140944edf.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:422021-09-21 19:05:04
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo6(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-5/coverage.file7.cpp.f551d0ebeb9c429aba16ade7468659dd.html b/gcovr/tests/linked/reference/gcc-5/coverage.file7.cpp.f551d0ebeb9c429aba16ade7468659dd.html index 880ac7940..8e176c0e4 100644 --- a/gcovr/tests/linked/reference/gcc-5/coverage.file7.cpp.f551d0ebeb9c429aba16ade7468659dd.html +++ b/gcovr/tests/linked/reference/gcc-5/coverage.file7.cpp.f551d0ebeb9c429aba16ade7468659dd.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:422021-09-21 19:05:04
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-5/coverage.main.cpp.13fb8fc771195717481a98e084ed0848.html b/gcovr/tests/linked/reference/gcc-5/coverage.main.cpp.13fb8fc771195717481a98e084ed0848.html index b5a9e7bde..6c7c67a61 100644 --- a/gcovr/tests/linked/reference/gcc-5/coverage.main.cpp.13fb8fc771195717481a98e084ed0848.html +++ b/gcovr/tests/linked/reference/gcc-5/coverage.main.cpp.13fb8fc771195717481a98e084ed0848.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:422021-09-21 19:05:04
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-6/coverage.file1.cpp.46c73eeafdf12f5341eb32413a90169e.html b/gcovr/tests/linked/reference/gcc-6/coverage.file1.cpp.46c73eeafdf12f5341eb32413a90169e.html index a5edb6081..1a59f4310 100644 --- a/gcovr/tests/linked/reference/gcc-6/coverage.file1.cpp.46c73eeafdf12f5341eb32413a90169e.html +++ b/gcovr/tests/linked/reference/gcc-6/coverage.file1.cpp.46c73eeafdf12f5341eb32413a90169e.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:192021-09-21 19:12:57
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-6/coverage.file2.cpp.eaea841cc07a0c33cf11763308ec1d22.html b/gcovr/tests/linked/reference/gcc-6/coverage.file2.cpp.eaea841cc07a0c33cf11763308ec1d22.html index aed3e4192..d57b02e13 100644 --- a/gcovr/tests/linked/reference/gcc-6/coverage.file2.cpp.eaea841cc07a0c33cf11763308ec1d22.html +++ b/gcovr/tests/linked/reference/gcc-6/coverage.file2.cpp.eaea841cc07a0c33cf11763308ec1d22.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:192021-09-21 19:12:57
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-6/coverage.file3.cpp.05c5eb887e5d0a7183edce836a6718cd.html b/gcovr/tests/linked/reference/gcc-6/coverage.file3.cpp.05c5eb887e5d0a7183edce836a6718cd.html index 34e57d3d7..ab14f30f1 100644 --- a/gcovr/tests/linked/reference/gcc-6/coverage.file3.cpp.05c5eb887e5d0a7183edce836a6718cd.html +++ b/gcovr/tests/linked/reference/gcc-6/coverage.file3.cpp.05c5eb887e5d0a7183edce836a6718cd.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:192021-09-21 19:12:57
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-6/coverage.file4.cpp.2b76827d4721ef11f88982191f3ee8c1.html b/gcovr/tests/linked/reference/gcc-6/coverage.file4.cpp.2b76827d4721ef11f88982191f3ee8c1.html index 4ae90f473..378784701 100644 --- a/gcovr/tests/linked/reference/gcc-6/coverage.file4.cpp.2b76827d4721ef11f88982191f3ee8c1.html +++ b/gcovr/tests/linked/reference/gcc-6/coverage.file4.cpp.2b76827d4721ef11f88982191f3ee8c1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:192021-09-21 19:12:57
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foobar(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-6/coverage.file5.cpp.cde4c7e07f79b4a315bd6b72e5bfe2dd.html b/gcovr/tests/linked/reference/gcc-6/coverage.file5.cpp.cde4c7e07f79b4a315bd6b72e5bfe2dd.html index aa4dba083..bd4bb9288 100644 --- a/gcovr/tests/linked/reference/gcc-6/coverage.file5.cpp.cde4c7e07f79b4a315bd6b72e5bfe2dd.html +++ b/gcovr/tests/linked/reference/gcc-6/coverage.file5.cpp.cde4c7e07f79b4a315bd6b72e5bfe2dd.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:192021-09-21 19:12:57
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo5(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-6/coverage.file6.cpp.37f4b31e3e12086d7b0f11d140944edf.html b/gcovr/tests/linked/reference/gcc-6/coverage.file6.cpp.37f4b31e3e12086d7b0f11d140944edf.html index e849aa89d..772262903 100644 --- a/gcovr/tests/linked/reference/gcc-6/coverage.file6.cpp.37f4b31e3e12086d7b0f11d140944edf.html +++ b/gcovr/tests/linked/reference/gcc-6/coverage.file6.cpp.37f4b31e3e12086d7b0f11d140944edf.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:192021-09-21 19:12:57
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo6(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-6/coverage.file7.cpp.f551d0ebeb9c429aba16ade7468659dd.html b/gcovr/tests/linked/reference/gcc-6/coverage.file7.cpp.f551d0ebeb9c429aba16ade7468659dd.html index 4d345b9eb..28827b4d2 100644 --- a/gcovr/tests/linked/reference/gcc-6/coverage.file7.cpp.f551d0ebeb9c429aba16ade7468659dd.html +++ b/gcovr/tests/linked/reference/gcc-6/coverage.file7.cpp.f551d0ebeb9c429aba16ade7468659dd.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:192021-09-21 19:12:57
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-6/coverage.main.cpp.13fb8fc771195717481a98e084ed0848.html b/gcovr/tests/linked/reference/gcc-6/coverage.main.cpp.13fb8fc771195717481a98e084ed0848.html index 545b90430..6abe99cb2 100644 --- a/gcovr/tests/linked/reference/gcc-6/coverage.main.cpp.13fb8fc771195717481a98e084ed0848.html +++ b/gcovr/tests/linked/reference/gcc-6/coverage.main.cpp.13fb8fc771195717481a98e084ed0848.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:192021-09-21 19:12:57
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-8/coverage.file1.cpp.46c73eeafdf12f5341eb32413a90169e.html b/gcovr/tests/linked/reference/gcc-8/coverage.file1.cpp.46c73eeafdf12f5341eb32413a90169e.html index 6bbb3f5b4..1b806719b 100644 --- a/gcovr/tests/linked/reference/gcc-8/coverage.file1.cpp.46c73eeafdf12f5341eb32413a90169e.html +++ b/gcovr/tests/linked/reference/gcc-8/coverage.file1.cpp.46c73eeafdf12f5341eb32413a90169e.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:032021-09-21 19:17:47
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-8/coverage.file2.cpp.eaea841cc07a0c33cf11763308ec1d22.html b/gcovr/tests/linked/reference/gcc-8/coverage.file2.cpp.eaea841cc07a0c33cf11763308ec1d22.html index 5e1562936..5e173fee5 100644 --- a/gcovr/tests/linked/reference/gcc-8/coverage.file2.cpp.eaea841cc07a0c33cf11763308ec1d22.html +++ b/gcovr/tests/linked/reference/gcc-8/coverage.file2.cpp.eaea841cc07a0c33cf11763308ec1d22.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:032021-09-21 19:17:47
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-8/coverage.file3.cpp.05c5eb887e5d0a7183edce836a6718cd.html b/gcovr/tests/linked/reference/gcc-8/coverage.file3.cpp.05c5eb887e5d0a7183edce836a6718cd.html index 768a9e7d1..4198d2e66 100644 --- a/gcovr/tests/linked/reference/gcc-8/coverage.file3.cpp.05c5eb887e5d0a7183edce836a6718cd.html +++ b/gcovr/tests/linked/reference/gcc-8/coverage.file3.cpp.05c5eb887e5d0a7183edce836a6718cd.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:032021-09-21 19:17:47
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-8/coverage.file4.cpp.2b76827d4721ef11f88982191f3ee8c1.html b/gcovr/tests/linked/reference/gcc-8/coverage.file4.cpp.2b76827d4721ef11f88982191f3ee8c1.html index 64d6e37ea..0d0b41d98 100644 --- a/gcovr/tests/linked/reference/gcc-8/coverage.file4.cpp.2b76827d4721ef11f88982191f3ee8c1.html +++ b/gcovr/tests/linked/reference/gcc-8/coverage.file4.cpp.2b76827d4721ef11f88982191f3ee8c1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:032021-09-21 19:17:47
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foobar(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-8/coverage.file5.cpp.cde4c7e07f79b4a315bd6b72e5bfe2dd.html b/gcovr/tests/linked/reference/gcc-8/coverage.file5.cpp.cde4c7e07f79b4a315bd6b72e5bfe2dd.html index 7b621500a..22815fca2 100644 --- a/gcovr/tests/linked/reference/gcc-8/coverage.file5.cpp.cde4c7e07f79b4a315bd6b72e5bfe2dd.html +++ b/gcovr/tests/linked/reference/gcc-8/coverage.file5.cpp.cde4c7e07f79b4a315bd6b72e5bfe2dd.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:032021-09-21 19:17:47
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo5(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-8/coverage.file6.cpp.37f4b31e3e12086d7b0f11d140944edf.html b/gcovr/tests/linked/reference/gcc-8/coverage.file6.cpp.37f4b31e3e12086d7b0f11d140944edf.html index b2a639b6f..508761546 100644 --- a/gcovr/tests/linked/reference/gcc-8/coverage.file6.cpp.37f4b31e3e12086d7b0f11d140944edf.html +++ b/gcovr/tests/linked/reference/gcc-8/coverage.file6.cpp.37f4b31e3e12086d7b0f11d140944edf.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:032021-09-21 19:17:47
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo6(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-8/coverage.file7.cpp.f551d0ebeb9c429aba16ade7468659dd.html b/gcovr/tests/linked/reference/gcc-8/coverage.file7.cpp.f551d0ebeb9c429aba16ade7468659dd.html index 6680fc23a..46b103f89 100644 --- a/gcovr/tests/linked/reference/gcc-8/coverage.file7.cpp.f551d0ebeb9c429aba16ade7468659dd.html +++ b/gcovr/tests/linked/reference/gcc-8/coverage.file7.cpp.f551d0ebeb9c429aba16ade7468659dd.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:032021-09-21 19:17:47
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/linked/reference/gcc-8/coverage.main.cpp.13fb8fc771195717481a98e084ed0848.html b/gcovr/tests/linked/reference/gcc-8/coverage.main.cpp.13fb8fc771195717481a98e084ed0848.html index 60e2266e8..6e194ef98 100644 --- a/gcovr/tests/linked/reference/gcc-8/coverage.main.cpp.13fb8fc771195717481a98e084ed0848.html +++ b/gcovr/tests/linked/reference/gcc-8/coverage.main.cpp.13fb8fc771195717481a98e084ed0848.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:032021-09-21 19:17:47
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/clang-10/coverage.css b/gcovr/tests/nested/reference/clang-10/coverage.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/nested/reference/clang-10/coverage.css +++ b/gcovr/tests/nested/reference/clang-10/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/nested/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/nested/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index f1c927a89..1bfa8dc5c 100644 --- a/gcovr/tests/nested/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/nested/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:482021-09-21 19:22:30
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/nested/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index 4ed949bcd..b50fb8d97 100644 --- a/gcovr/tests/nested/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/nested/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:482021-09-21 19:22:30
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3barv + + 1 + + called 1 time +
+ _Z4bar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/nested/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index 54f0704b5..d87e1593f 100644 --- a/gcovr/tests/nested/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/nested/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 19:45:082021-11-09 20:50:43
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z7fourbarv + + 1 + + called 1 time +
+ _Z8fourbar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/nested/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index e9a5892ae..098ed929b 100644 --- a/gcovr/tests/nested/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/nested/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:482021-09-21 19:22:30
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z6foobari + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/nested/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index bc1b60869..395765071 100644 --- a/gcovr/tests/nested/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/nested/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:482021-09-21 19:22:30
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo5i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/nested/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index 8fa5c18ee..101ec1cf4 100644 --- a/gcovr/tests/nested/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/nested/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:482021-09-21 19:22:30
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo6i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/nested/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index 46f853383..49664dd8e 100644 --- a/gcovr/tests/nested/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/nested/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:482021-09-21 19:22:30
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z9uncoveredv + + 1 + + not called +
+
+
diff --git a/gcovr/tests/nested/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/nested/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index f883e45a6..de37cfc84 100644 --- a/gcovr/tests/nested/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/nested/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:482021-09-21 19:22:30
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-5/coverage.css b/gcovr/tests/nested/reference/gcc-5/coverage.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/nested/reference/gcc-5/coverage.css +++ b/gcovr/tests/nested/reference/gcc-5/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/nested/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/nested/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index e72853f3a..120e32568 100644 --- a/gcovr/tests/nested/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/nested/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:442021-09-21 19:05:06
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/nested/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index 13a6dbcef..4e9bd5961 100644 --- a/gcovr/tests/nested/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/nested/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:442021-09-21 19:05:06
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/nested/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index 521223229..4604d0c4b 100644 --- a/gcovr/tests/nested/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/nested/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:442021-09-21 19:05:06
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/nested/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index daa1ec0af..81362fdb5 100644 --- a/gcovr/tests/nested/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/nested/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:442021-09-21 19:05:06
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foobar(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/nested/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index 7f6566f8a..13c6604e1 100644 --- a/gcovr/tests/nested/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/nested/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:442021-09-21 19:05:06
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo5(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/nested/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index a1d58b9b3..b7f1237a8 100644 --- a/gcovr/tests/nested/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/nested/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:442021-09-21 19:05:06
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo6(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/nested/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index ec0f1d646..219ddc832 100644 --- a/gcovr/tests/nested/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/nested/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:442021-09-21 19:05:06
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/nested/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index 9c529980c..072b5fcff 100644 --- a/gcovr/tests/nested/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/nested/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:442021-09-21 19:05:06
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-6/coverage.css b/gcovr/tests/nested/reference/gcc-6/coverage.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/nested/reference/gcc-6/coverage.css +++ b/gcovr/tests/nested/reference/gcc-6/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/nested/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/nested/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index ffc0c0791..a7d104eef 100644 --- a/gcovr/tests/nested/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/nested/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:212021-09-21 19:12:59
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/nested/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index 81da094e7..e215201b3 100644 --- a/gcovr/tests/nested/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/nested/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:212021-09-21 19:12:59
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/nested/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index 88452ce23..814283576 100644 --- a/gcovr/tests/nested/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/nested/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:212021-09-21 19:12:59
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/nested/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index 89f25588d..18cd7ac08 100644 --- a/gcovr/tests/nested/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/nested/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:212021-09-21 19:12:59
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foobar(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/nested/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index ef5c9bbb9..cd41d0d39 100644 --- a/gcovr/tests/nested/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/nested/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:212021-09-21 19:12:59
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo5(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/nested/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index 3b6be9a4d..861c71d0a 100644 --- a/gcovr/tests/nested/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/nested/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:212021-09-21 19:12:59
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo6(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/nested/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index d62378df0..9d5ce5ca0 100644 --- a/gcovr/tests/nested/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/nested/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:212021-09-21 19:12:59
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/nested/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index 88299b875..a93487c4e 100644 --- a/gcovr/tests/nested/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/nested/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:212021-09-21 19:12:59
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-8/coverage.css b/gcovr/tests/nested/reference/gcc-8/coverage.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/nested/reference/gcc-8/coverage.css +++ b/gcovr/tests/nested/reference/gcc-8/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/nested/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/nested/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index c58c170af..ca4bd44a1 100644 --- a/gcovr/tests/nested/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/nested/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:052021-09-21 19:17:49
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/nested/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index b12bdf037..6b4054c8b 100644 --- a/gcovr/tests/nested/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/nested/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:052021-09-21 19:17:49
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/nested/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index 346ded38a..acdc1b7c8 100644 --- a/gcovr/tests/nested/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/nested/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:052021-09-21 19:17:49
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/nested/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index d47ec81a1..2baa25a83 100644 --- a/gcovr/tests/nested/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/nested/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:052021-09-21 19:17:49
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foobar(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/nested/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index 19bfccdeb..b6fb6b374 100644 --- a/gcovr/tests/nested/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/nested/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:052021-09-21 19:17:49
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo5(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/nested/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index 7afaa5d06..0edfa351f 100644 --- a/gcovr/tests/nested/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/nested/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:052021-09-21 19:17:49
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo6(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/nested/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index 2012a1f6b..34318b60b 100644 --- a/gcovr/tests/nested/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/nested/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:052021-09-21 19:17:49
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/nested/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/nested/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index c133f8f65..909b8beb9 100644 --- a/gcovr/tests/nested/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/nested/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:052021-09-21 19:17:49
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index 770fbad76..26bc4733d 100644 --- a/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:522021-09-21 19:22:33
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index a88e23690..9abc98fbd 100644 --- a/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:522021-09-21 19:22:33
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3barv + + 1 + + called 1 time +
+ _Z4bar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index 2017f5d32..7081da1ad 100644 --- a/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:522021-09-21 19:22:33
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z7fourbarv + + 1 + + called 1 time +
+ _Z8fourbar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index 5fc976757..0286ffeca 100644 --- a/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:522021-09-21 19:22:33
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z6foobari + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index c3466d104..693459bc9 100644 --- a/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:522021-09-21 19:22:33
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo5i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index cadcb3b9f..81af1da3a 100644 --- a/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:522021-09-21 19:22:33
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo6i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index f10ae518d..dca5a2cdc 100644 --- a/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:522021-09-21 19:22:33
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z9uncoveredv + + 1 + + not called +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index 4d5c3f469..f944a4d97 100644 --- a/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/nested2-use-existing/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:522021-09-21 19:22:33
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index 31ce9ba8b..0da6ccd0d 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:482021-09-21 19:05:10
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index 09af168d6..9c8ef517b 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:482021-09-21 19:05:10
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3barv + + 1 + + called 1 time +
+ _Z4bar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index bd78975f7..49b18a31b 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:482021-09-21 19:05:10
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z7fourbarv + + 1 + + called 1 time +
+ _Z8fourbar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index 4724093dc..1d168f4ef 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:482021-09-21 19:05:10
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z6foobari + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index d6f596f63..cbcab7180 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:482021-09-21 19:05:10
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo5i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index cf7367598..439d36e5f 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:482021-09-21 19:05:10
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo6i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index 7b292f635..50be0bdfa 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:482021-09-21 19:05:10
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z9uncoveredv + + 1 + + not called +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index 3d3f29877..d2edaa374 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:482021-09-21 19:05:10
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 2 2 - 100.0% + 100.0% Branches: @@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z41__static_initialization_and_destruction_0ii + + 21 + + called 1 time +
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index 8e8c4ab84..afe06f64e 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:252021-09-21 19:13:03
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index a028497d8..852c0746b 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:252021-09-21 19:13:03
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3barv + + 1 + + called 1 time +
+ _Z4bar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index 6aeec1353..3ca775ef1 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:252021-09-21 19:13:03
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z7fourbarv + + 1 + + called 1 time +
+ _Z8fourbar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index 7c1eefba8..45ba008b7 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:252021-09-21 19:13:03
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z6foobari + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index 023ded2cd..c6e1f0ab5 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:252021-09-21 19:13:03
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo5i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index 81d105c9a..c8f4b5b15 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:252021-09-21 19:13:03
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo6i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index 773dca679..563e52181 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:252021-09-21 19:13:03
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z9uncoveredv + + 1 + + not called +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index 46a6a55fa..1a2776d32 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:252021-09-21 19:13:03
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 2 2 - 100.0% + 100.0% Branches: @@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z41__static_initialization_and_destruction_0ii + + 21 + + called 1 time +
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index 288cc604f..2283aa1ed 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:092021-09-21 19:17:53
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index 45f74413f..3c18064da 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:092021-09-21 19:17:53
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3barv + + 1 + + called 1 time +
+ _Z4bar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index 02b35182a..812f9bb12 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:092021-09-21 19:17:53
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z7fourbarv + + 1 + + called 1 time +
+ _Z8fourbar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index 81e2cffbc..0dfb3895a 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:092021-09-21 19:17:53
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z6foobari + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index f07bcaa87..82d01c697 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:092021-09-21 19:17:53
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo5i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index 2fc7ac1e0..6f5fd9b10 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:092021-09-21 19:17:53
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo6i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index 4bbdb13ad..5c360447a 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:092021-09-21 19:17:53
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z9uncoveredv + + 1 + + not called +
+
+
diff --git a/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index fde7ff7a1..ce0d470ef 100644 --- a/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/nested2-use-existing/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:092021-09-21 19:17:53
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/clang-10/coverage.css b/gcovr/tests/nested2/reference/clang-10/coverage.css index 14c169c0b..fd22883e4 100644 --- a/gcovr/tests/nested2/reference/clang-10/coverage.css +++ b/gcovr/tests/nested2/reference/clang-10/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/nested2/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/nested2/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index 6b20575b1..d62038f61 100644 --- a/gcovr/tests/nested2/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/nested2/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:502021-09-21 19:22:32
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/nested2/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index c06cb4d7d..d4706650d 100644 --- a/gcovr/tests/nested2/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/nested2/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:502021-09-21 19:22:32
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3barv + + 1 + + called 1 time +
+ _Z4bar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested2/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/nested2/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index c13727db9..8816ac80c 100644 --- a/gcovr/tests/nested2/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/nested2/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 19:45:102021-11-09 20:50:45
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z7fourbarv + + 1 + + called 1 time +
+ _Z8fourbar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested2/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/nested2/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index 0c1d9a78d..f92a01262 100644 --- a/gcovr/tests/nested2/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/nested2/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:502021-09-21 19:22:32
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z6foobari + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/nested2/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index ae66fa6a2..2d1ce8b10 100644 --- a/gcovr/tests/nested2/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/nested2/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:502021-09-21 19:22:32
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo5i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/nested2/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index f4a8c1e5a..e0625c159 100644 --- a/gcovr/tests/nested2/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/nested2/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:502021-09-21 19:22:32
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo6i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/nested2/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index 97ba61332..0a47534d2 100644 --- a/gcovr/tests/nested2/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/nested2/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:502021-09-21 19:22:32
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z9uncoveredv + + 1 + + not called +
+
+
diff --git a/gcovr/tests/nested2/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/nested2/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index 70d55aede..9a58af6fa 100644 --- a/gcovr/tests/nested2/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/nested2/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:502021-09-21 19:22:32
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-5/coverage.css b/gcovr/tests/nested2/reference/gcc-5/coverage.css index 14c169c0b..fd22883e4 100644 --- a/gcovr/tests/nested2/reference/gcc-5/coverage.css +++ b/gcovr/tests/nested2/reference/gcc-5/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/nested2/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/nested2/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index 3804a67b5..789f5eaf9 100644 --- a/gcovr/tests/nested2/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/nested2/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:462021-09-21 19:05:08
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/nested2/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index 1073c3c0a..e220ed751 100644 --- a/gcovr/tests/nested2/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/nested2/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:462021-09-21 19:05:08
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/nested2/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index 403b045f7..d52c20e6f 100644 --- a/gcovr/tests/nested2/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/nested2/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:462021-09-21 19:05:08
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/nested2/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index b737e7208..e7d764811 100644 --- a/gcovr/tests/nested2/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/nested2/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:462021-09-21 19:05:08
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foobar(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/nested2/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index 89ffc07c6..db503ebbe 100644 --- a/gcovr/tests/nested2/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/nested2/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:462021-09-21 19:05:08
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo5(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/nested2/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index 64fa323b4..586de995f 100644 --- a/gcovr/tests/nested2/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/nested2/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:462021-09-21 19:05:08
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo6(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/nested2/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index 1f92e1958..b77ea6a49 100644 --- a/gcovr/tests/nested2/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/nested2/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:462021-09-21 19:05:08
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/nested2/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index daeb518b9..1cd7a55e3 100644 --- a/gcovr/tests/nested2/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/nested2/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:462021-09-21 19:05:08
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-6/coverage.css b/gcovr/tests/nested2/reference/gcc-6/coverage.css index 14c169c0b..fd22883e4 100644 --- a/gcovr/tests/nested2/reference/gcc-6/coverage.css +++ b/gcovr/tests/nested2/reference/gcc-6/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/nested2/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/nested2/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index a3c84ae84..6ac88a776 100644 --- a/gcovr/tests/nested2/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/nested2/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:232021-09-21 19:13:01
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/nested2/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index 958e43d50..dce1fa1ac 100644 --- a/gcovr/tests/nested2/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/nested2/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:232021-09-21 19:13:01
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/nested2/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index 6f627bcfb..0f1120df2 100644 --- a/gcovr/tests/nested2/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/nested2/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:232021-09-21 19:13:01
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/nested2/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index 7fe53fd91..deae7b360 100644 --- a/gcovr/tests/nested2/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/nested2/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:232021-09-21 19:13:01
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foobar(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/nested2/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index cdd9ed8cb..ce8d2709f 100644 --- a/gcovr/tests/nested2/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/nested2/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:232021-09-21 19:13:01
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo5(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/nested2/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index cf322bbda..6d49b0b4b 100644 --- a/gcovr/tests/nested2/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/nested2/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:232021-09-21 19:13:01
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo6(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/nested2/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index 5b2e7b227..9b72225f1 100644 --- a/gcovr/tests/nested2/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/nested2/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:232021-09-21 19:13:01
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/nested2/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index 130fd1594..82dc418b6 100644 --- a/gcovr/tests/nested2/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/nested2/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:232021-09-21 19:13:01
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-8/coverage.css b/gcovr/tests/nested2/reference/gcc-8/coverage.css index 14c169c0b..fd22883e4 100644 --- a/gcovr/tests/nested2/reference/gcc-8/coverage.css +++ b/gcovr/tests/nested2/reference/gcc-8/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/nested2/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/nested2/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index 659bc149f..9967f93b4 100644 --- a/gcovr/tests/nested2/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/nested2/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:072021-09-21 19:17:51
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/nested2/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index 55b17c0d1..deda5a48d 100644 --- a/gcovr/tests/nested2/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/nested2/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:072021-09-21 19:17:51
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/nested2/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index b1c7d68d9..930a23201 100644 --- a/gcovr/tests/nested2/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/nested2/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:072021-09-21 19:17:51
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/nested2/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index fa824e592..2c0ae092a 100644 --- a/gcovr/tests/nested2/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/nested2/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:072021-09-21 19:17:51
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foobar(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/nested2/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index 189a2481d..02d24bf4f 100644 --- a/gcovr/tests/nested2/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/nested2/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:072021-09-21 19:17:51
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo5(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/nested2/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index c3862c5cf..f12d4be4f 100644 --- a/gcovr/tests/nested2/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/nested2/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:072021-09-21 19:17:51
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo6(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/nested2/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index 0c2442702..8da52d55a 100644 --- a/gcovr/tests/nested2/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/nested2/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:072021-09-21 19:17:51
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/nested2/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/nested2/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index 57b16c39e..12223739a 100644 --- a/gcovr/tests/nested2/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/nested2/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:072021-09-21 19:17:51
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/nested3/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index 16a043b04..d213f5d24 100644 --- a/gcovr/tests/nested3/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/nested3/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:532021-09-21 19:22:35
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/nested3/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index d760cd2ec..2550cb7aa 100644 --- a/gcovr/tests/nested3/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/nested3/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:532021-09-21 19:22:35
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3barv + + 1 + + called 1 time +
+ _Z4bar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested3/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/nested3/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index 393f3cb8b..2174acd7d 100644 --- a/gcovr/tests/nested3/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/nested3/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 19:45:142021-11-09 20:50:49
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z7fourbarv + + 1 + + called 1 time +
+ _Z8fourbar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested3/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/nested3/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index 80c4e3915..d3bf550ae 100644 --- a/gcovr/tests/nested3/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/nested3/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:532021-09-21 19:22:35
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z6foobari + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/nested3/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index 3651cb96f..ee4d1fae4 100644 --- a/gcovr/tests/nested3/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/nested3/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:532021-09-21 19:22:35
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo5i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/nested3/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index d32140cb6..5b0c8e1c1 100644 --- a/gcovr/tests/nested3/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/nested3/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:532021-09-21 19:22:35
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo6i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/nested3/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index 6e24435c7..555d7cc36 100644 --- a/gcovr/tests/nested3/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/nested3/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:532021-09-21 19:22:35
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z9uncoveredv + + 1 + + not called +
+
+
diff --git a/gcovr/tests/nested3/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/nested3/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index 22f4bf264..bc11ac8f8 100644 --- a/gcovr/tests/nested3/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/nested3/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:532021-09-21 19:22:35
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/nested3/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index 57b0b9a4f..ec829a585 100644 --- a/gcovr/tests/nested3/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/nested3/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:492021-09-21 19:05:12
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/nested3/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index adffc3040..c2a5dc67f 100644 --- a/gcovr/tests/nested3/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/nested3/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:492021-09-21 19:05:12
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/nested3/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index 114a1e02c..06a2ee328 100644 --- a/gcovr/tests/nested3/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/nested3/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:492021-09-21 19:05:12
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/nested3/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index f69cef286..8f3a26f3c 100644 --- a/gcovr/tests/nested3/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/nested3/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:492021-09-21 19:05:12
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foobar(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/nested3/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index 96109de3a..8e5bb3638 100644 --- a/gcovr/tests/nested3/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/nested3/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:492021-09-21 19:05:12
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo5(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/nested3/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index 4cc42f0f8..9980bc5d9 100644 --- a/gcovr/tests/nested3/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/nested3/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:492021-09-21 19:05:12
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo6(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/nested3/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index 87f7c716f..a2a2b2ac7 100644 --- a/gcovr/tests/nested3/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/nested3/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:492021-09-21 19:05:12
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/nested3/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index 5360a174c..6869d8433 100644 --- a/gcovr/tests/nested3/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/nested3/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:492021-09-21 19:05:12
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/nested3/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index e4cfc023a..696304920 100644 --- a/gcovr/tests/nested3/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/nested3/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:272021-09-21 19:13:05
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/nested3/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index b66435658..45b115fb8 100644 --- a/gcovr/tests/nested3/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/nested3/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:272021-09-21 19:13:05
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/nested3/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index 11ec81ba8..054f1ba62 100644 --- a/gcovr/tests/nested3/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/nested3/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:272021-09-21 19:13:05
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/nested3/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index 6645bc765..40bd9d320 100644 --- a/gcovr/tests/nested3/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/nested3/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:272021-09-21 19:13:05
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foobar(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/nested3/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index 698a70718..049b97fa2 100644 --- a/gcovr/tests/nested3/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/nested3/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:272021-09-21 19:13:05
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo5(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/nested3/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index ac9645f67..0ecf07393 100644 --- a/gcovr/tests/nested3/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/nested3/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:272021-09-21 19:13:05
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo6(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/nested3/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index 528f71530..b0922823f 100644 --- a/gcovr/tests/nested3/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/nested3/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:272021-09-21 19:13:05
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/nested3/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index d18a98db6..366f9b3de 100644 --- a/gcovr/tests/nested3/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/nested3/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:272021-09-21 19:13:05
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/nested3/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index 40509479b..54c8e1a21 100644 --- a/gcovr/tests/nested3/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/nested3/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:112021-09-21 19:17:55
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/nested3/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index 7154a6264..83b8edb6d 100644 --- a/gcovr/tests/nested3/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/nested3/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:112021-09-21 19:17:55
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/nested3/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index 0946a77aa..d89d735df 100644 --- a/gcovr/tests/nested3/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/nested3/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:112021-09-21 19:17:55
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/nested3/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index 9edd6f52f..0be04f21b 100644 --- a/gcovr/tests/nested3/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/nested3/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:112021-09-21 19:17:55
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foobar(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/nested3/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index 4e5394456..30d1ae0fb 100644 --- a/gcovr/tests/nested3/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/nested3/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:112021-09-21 19:17:55
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo5(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/nested3/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index 46ebc7a85..6226c04ca 100644 --- a/gcovr/tests/nested3/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/nested3/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:112021-09-21 19:17:55
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo6(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/nested3/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index 531227329..165c3e7b9 100644 --- a/gcovr/tests/nested3/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/nested3/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:112021-09-21 19:17:55
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/nested3/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/nested3/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index 3b21fbfb8..188a06ef9 100644 --- a/gcovr/tests/nested3/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/nested3/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:112021-09-21 19:17:55
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/nobranch/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/nobranch/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 11b69dec6..23118b131 100644 --- a/gcovr/tests/nobranch/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/nobranch/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:542021-09-21 19:22:36
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nobranch/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/nobranch/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 193e97f38..4d9d97c61 100644 --- a/gcovr/tests/nobranch/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/nobranch/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:502021-09-21 19:05:13
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nobranch/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/nobranch/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 7f749a891..bcd877b0f 100644 --- a/gcovr/tests/nobranch/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/nobranch/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:282021-09-21 19:13:06
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/nobranch/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/nobranch/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 1bb9e23dc..18838e004 100644 --- a/gcovr/tests/nobranch/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/nobranch/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:122021-09-21 19:17:56
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/oos/reference/clang-10/coverage.file1.cpp.79c9168e71af7c6ad188756fb55e9092.html b/gcovr/tests/oos/reference/clang-10/coverage.file1.cpp.79c9168e71af7c6ad188756fb55e9092.html index d5bad4430..8548a5cba 100644 --- a/gcovr/tests/oos/reference/clang-10/coverage.file1.cpp.79c9168e71af7c6ad188756fb55e9092.html +++ b/gcovr/tests/oos/reference/clang-10/coverage.file1.cpp.79c9168e71af7c6ad188756fb55e9092.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:552021-09-21 19:22:37
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3barv + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/oos/reference/clang-10/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html b/gcovr/tests/oos/reference/clang-10/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html index de91c6e82..90baed851 100644 --- a/gcovr/tests/oos/reference/clang-10/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html +++ b/gcovr/tests/oos/reference/clang-10/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:552021-09-21 19:22:37
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/oos/reference/gcc-5/coverage.file1.cpp.79c9168e71af7c6ad188756fb55e9092.html b/gcovr/tests/oos/reference/gcc-5/coverage.file1.cpp.79c9168e71af7c6ad188756fb55e9092.html index a42a4e834..9551fa4ca 100644 --- a/gcovr/tests/oos/reference/gcc-5/coverage.file1.cpp.79c9168e71af7c6ad188756fb55e9092.html +++ b/gcovr/tests/oos/reference/gcc-5/coverage.file1.cpp.79c9168e71af7c6ad188756fb55e9092.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:522021-09-21 19:05:14
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/oos/reference/gcc-5/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html b/gcovr/tests/oos/reference/gcc-5/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html index ce7699ddd..3919ad43e 100644 --- a/gcovr/tests/oos/reference/gcc-5/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html +++ b/gcovr/tests/oos/reference/gcc-5/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:522021-09-21 19:05:14
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/oos/reference/gcc-6/coverage.file1.cpp.79c9168e71af7c6ad188756fb55e9092.html b/gcovr/tests/oos/reference/gcc-6/coverage.file1.cpp.79c9168e71af7c6ad188756fb55e9092.html index d8a9d09b5..9fd095a7c 100644 --- a/gcovr/tests/oos/reference/gcc-6/coverage.file1.cpp.79c9168e71af7c6ad188756fb55e9092.html +++ b/gcovr/tests/oos/reference/gcc-6/coverage.file1.cpp.79c9168e71af7c6ad188756fb55e9092.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:292021-09-21 19:13:07
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/oos/reference/gcc-6/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html b/gcovr/tests/oos/reference/gcc-6/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html index 4db1fcd8b..0025d22e4 100644 --- a/gcovr/tests/oos/reference/gcc-6/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html +++ b/gcovr/tests/oos/reference/gcc-6/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:292021-09-21 19:13:07
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/oos/reference/gcc-8/coverage.file1.cpp.79c9168e71af7c6ad188756fb55e9092.html b/gcovr/tests/oos/reference/gcc-8/coverage.file1.cpp.79c9168e71af7c6ad188756fb55e9092.html index af5a9f9a0..8fcf71b83 100644 --- a/gcovr/tests/oos/reference/gcc-8/coverage.file1.cpp.79c9168e71af7c6ad188756fb55e9092.html +++ b/gcovr/tests/oos/reference/gcc-8/coverage.file1.cpp.79c9168e71af7c6ad188756fb55e9092.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:132021-09-21 19:17:57
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/oos/reference/gcc-8/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html b/gcovr/tests/oos/reference/gcc-8/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html index 1c7b7cee8..df7148641 100644 --- a/gcovr/tests/oos/reference/gcc-8/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html +++ b/gcovr/tests/oos/reference/gcc-8/coverage.main.cpp.7ec3c68a81efff79b6ca22ac1f1eabba.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:132021-09-21 19:17:57
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/oos2/reference/clang-10/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html b/gcovr/tests/oos2/reference/clang-10/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html index 35bc94af0..1793de682 100644 --- a/gcovr/tests/oos2/reference/clang-10/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html +++ b/gcovr/tests/oos2/reference/clang-10/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:572021-09-21 19:22:39
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3barv + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/oos2/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/oos2/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index d72f70388..5907a9f41 100644 --- a/gcovr/tests/oos2/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/oos2/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:37:572021-09-21 19:22:39
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/oos2/reference/gcc-5/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html b/gcovr/tests/oos2/reference/gcc-5/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html index 006a34ebd..f7a83a0c1 100644 --- a/gcovr/tests/oos2/reference/gcc-5/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html +++ b/gcovr/tests/oos2/reference/gcc-5/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:532021-09-21 19:05:15
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/oos2/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/oos2/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 5ac8c681b..b837faec4 100644 --- a/gcovr/tests/oos2/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/oos2/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:532021-09-21 19:05:15
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/oos2/reference/gcc-6/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html b/gcovr/tests/oos2/reference/gcc-6/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html index 4a98c301f..bf52b3ca7 100644 --- a/gcovr/tests/oos2/reference/gcc-6/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html +++ b/gcovr/tests/oos2/reference/gcc-6/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:312021-09-21 19:13:09
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/oos2/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/oos2/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index a7cb296cc..04336f5d4 100644 --- a/gcovr/tests/oos2/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/oos2/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:312021-09-21 19:13:09
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/oos2/reference/gcc-8/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html b/gcovr/tests/oos2/reference/gcc-8/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html index 8e3596b15..0e72b959f 100644 --- a/gcovr/tests/oos2/reference/gcc-8/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html +++ b/gcovr/tests/oos2/reference/gcc-8/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:142021-09-21 19:17:59
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/oos2/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/oos2/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 064c564f2..da3152a51 100644 --- a/gcovr/tests/oos2/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/oos2/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:142021-09-21 19:17:59
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 5 + + called 1 time +
+ main + + 14 + + called 1 time +
+
+
diff --git a/gcovr/tests/rounding/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/rounding/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 3203ebc72..178226c60 100644 --- a/gcovr/tests/rounding/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/rounding/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 15:23:472021-09-21 19:22:40
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z22use_number_of_branchesi + + 11 + + called 999 times +
+ main + + 4 + + called 1 time +
+
+
diff --git a/gcovr/tests/rounding/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/rounding/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 4f5d56b35..8b10ba38c 100644 --- a/gcovr/tests/rounding/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/rounding/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 15:34:172021-09-21 19:05:17
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ main + + 4 + + called 1 time +
+ use_number_of_branches(int) + + 11 + + called 999 times +
+
+
diff --git a/gcovr/tests/rounding/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/rounding/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index ed70e0681..1b7c69f26 100644 --- a/gcovr/tests/rounding/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/rounding/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 15:38:482021-09-21 19:13:10
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ main + + 4 + + called 1 time +
+ use_number_of_branches(int) + + 11 + + called 999 times +
+
+
diff --git a/gcovr/tests/rounding/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/rounding/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index ad12f5ac5..e3f16a282 100644 --- a/gcovr/tests/rounding/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/rounding/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 15:40:422021-09-21 19:18:00
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ main + + 4 + + called 1 time +
+ use_number_of_branches(int) + + 11 + + called 999 times +
+
+
diff --git a/gcovr/tests/shadow/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/shadow/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 780eb9aaa..d70d75df2 100644 --- a/gcovr/tests/shadow/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/shadow/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 19:45:212021-11-09 20:50:56
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/shadow/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/shadow/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index b7b6d62a1..9c926bfe8 100644 --- a/gcovr/tests/shadow/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/shadow/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:562021-09-21 19:05:18
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/shadow/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/shadow/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 53027b5ad..3d193387b 100644 --- a/gcovr/tests/shadow/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/shadow/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:342021-09-21 19:13:12
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/shadow/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/shadow/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 97ddc6fe2..e5aa814c0 100644 --- a/gcovr/tests/shadow/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/shadow/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:172021-09-21 19:18:02
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/shared_lib/reference/clang-10/coverage.lib.cpp.fe0bf7776d5f70ffd16bbbe1585c3b26.html b/gcovr/tests/shared_lib/reference/clang-10/coverage.lib.cpp.fe0bf7776d5f70ffd16bbbe1585c3b26.html index a11a077e5..0da96bc68 100644 --- a/gcovr/tests/shared_lib/reference/clang-10/coverage.lib.cpp.fe0bf7776d5f70ffd16bbbe1585c3b26.html +++ b/gcovr/tests/shared_lib/reference/clang-10/coverage.lib.cpp.fe0bf7776d5f70ffd16bbbe1585c3b26.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:312021-09-21 19:22:43
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z5printi + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/shared_lib/reference/clang-10/coverage.tmp.cpp.5862a73542fa66ffe4756306b76b28bb.html b/gcovr/tests/shared_lib/reference/clang-10/coverage.tmp.cpp.5862a73542fa66ffe4756306b76b28bb.html index e4c792460..89ba05cd7 100644 --- a/gcovr/tests/shared_lib/reference/clang-10/coverage.tmp.cpp.5862a73542fa66ffe4756306b76b28bb.html +++ b/gcovr/tests/shared_lib/reference/clang-10/coverage.tmp.cpp.5862a73542fa66ffe4756306b76b28bb.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:312021-09-21 19:22:43
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/shared_lib/reference/gcc-5/coverage.lib.cpp.fe0bf7776d5f70ffd16bbbe1585c3b26.html b/gcovr/tests/shared_lib/reference/gcc-5/coverage.lib.cpp.fe0bf7776d5f70ffd16bbbe1585c3b26.html index 0de886d7f..aa912c948 100644 --- a/gcovr/tests/shared_lib/reference/gcc-5/coverage.lib.cpp.fe0bf7776d5f70ffd16bbbe1585c3b26.html +++ b/gcovr/tests/shared_lib/reference/gcc-5/coverage.lib.cpp.fe0bf7776d5f70ffd16bbbe1585c3b26.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:572021-09-21 19:05:20
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ print(int) + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/shared_lib/reference/gcc-5/coverage.tmp.cpp.5862a73542fa66ffe4756306b76b28bb.html b/gcovr/tests/shared_lib/reference/gcc-5/coverage.tmp.cpp.5862a73542fa66ffe4756306b76b28bb.html index 70bb280e9..5c17d6d93 100644 --- a/gcovr/tests/shared_lib/reference/gcc-5/coverage.tmp.cpp.5862a73542fa66ffe4756306b76b28bb.html +++ b/gcovr/tests/shared_lib/reference/gcc-5/coverage.tmp.cpp.5862a73542fa66ffe4756306b76b28bb.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:572021-09-21 19:05:20
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/shared_lib/reference/gcc-6/coverage.lib.cpp.fe0bf7776d5f70ffd16bbbe1585c3b26.html b/gcovr/tests/shared_lib/reference/gcc-6/coverage.lib.cpp.fe0bf7776d5f70ffd16bbbe1585c3b26.html index 9296a8690..06b5f50f1 100644 --- a/gcovr/tests/shared_lib/reference/gcc-6/coverage.lib.cpp.fe0bf7776d5f70ffd16bbbe1585c3b26.html +++ b/gcovr/tests/shared_lib/reference/gcc-6/coverage.lib.cpp.fe0bf7776d5f70ffd16bbbe1585c3b26.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:352021-09-21 19:13:13
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ print(int) + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/shared_lib/reference/gcc-6/coverage.tmp.cpp.5862a73542fa66ffe4756306b76b28bb.html b/gcovr/tests/shared_lib/reference/gcc-6/coverage.tmp.cpp.5862a73542fa66ffe4756306b76b28bb.html index b733ec46a..975b018dc 100644 --- a/gcovr/tests/shared_lib/reference/gcc-6/coverage.tmp.cpp.5862a73542fa66ffe4756306b76b28bb.html +++ b/gcovr/tests/shared_lib/reference/gcc-6/coverage.tmp.cpp.5862a73542fa66ffe4756306b76b28bb.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:352021-09-21 19:13:13
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/shared_lib/reference/gcc-8/coverage.lib.cpp.fe0bf7776d5f70ffd16bbbe1585c3b26.html b/gcovr/tests/shared_lib/reference/gcc-8/coverage.lib.cpp.fe0bf7776d5f70ffd16bbbe1585c3b26.html index a05af4d85..cb4a43e59 100644 --- a/gcovr/tests/shared_lib/reference/gcc-8/coverage.lib.cpp.fe0bf7776d5f70ffd16bbbe1585c3b26.html +++ b/gcovr/tests/shared_lib/reference/gcc-8/coverage.lib.cpp.fe0bf7776d5f70ffd16bbbe1585c3b26.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:192021-09-21 19:18:03
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ print(int) + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/shared_lib/reference/gcc-8/coverage.tmp.cpp.5862a73542fa66ffe4756306b76b28bb.html b/gcovr/tests/shared_lib/reference/gcc-8/coverage.tmp.cpp.5862a73542fa66ffe4756306b76b28bb.html index 51aff6056..1fda924ee 100644 --- a/gcovr/tests/shared_lib/reference/gcc-8/coverage.tmp.cpp.5862a73542fa66ffe4756306b76b28bb.html +++ b/gcovr/tests/shared_lib/reference/gcc-8/coverage.tmp.cpp.5862a73542fa66ffe4756306b76b28bb.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:192021-09-21 19:18:03
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/simple1-dir/reference/clang-10/coverage.html b/gcovr/tests/simple1-dir/reference/clang-10/coverage.html index 0badd89ff..2a16d7c3b 100644 --- a/gcovr/tests/simple1-dir/reference/clang-10/coverage.html +++ b/gcovr/tests/simple1-dir/reference/clang-10/coverage.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -528,7 +553,7 @@

GCC Code Coverage Report

- + diff --git a/gcovr/tests/simple1-dir/reference/clang-10/coverage_details.css b/gcovr/tests/simple1-dir/reference/clang-10/coverage_details.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/simple1-dir/reference/clang-10/coverage_details.css +++ b/gcovr/tests/simple1-dir/reference/clang-10/coverage_details.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/simple1-dir/reference/clang-10/coverage_details.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/simple1-dir/reference/clang-10/coverage_details.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 71ef8c9c6..2061af751 100644 --- a/gcovr/tests/simple1-dir/reference/clang-10/coverage_details.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/simple1-dir/reference/clang-10/coverage_details.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 19:45:272021-11-09 20:51:01
Legend:
Date:2021-11-09 19:45:272021-11-09 20:51:02
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/simple1-dir/reference/gcc-5/coverage.html b/gcovr/tests/simple1-dir/reference/gcc-5/coverage.html index 65ac3534a..de81cba37 100644 --- a/gcovr/tests/simple1-dir/reference/gcc-5/coverage.html +++ b/gcovr/tests/simple1-dir/reference/gcc-5/coverage.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -528,7 +553,7 @@

GCC Code Coverage Report

- + diff --git a/gcovr/tests/simple1-dir/reference/gcc-5/coverage_details.css b/gcovr/tests/simple1-dir/reference/gcc-5/coverage_details.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/simple1-dir/reference/gcc-5/coverage_details.css +++ b/gcovr/tests/simple1-dir/reference/gcc-5/coverage_details.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/simple1-dir/reference/gcc-5/coverage_details.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/simple1-dir/reference/gcc-5/coverage_details.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 2a731529d..e7a3e3739 100644 --- a/gcovr/tests/simple1-dir/reference/gcc-5/coverage_details.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/simple1-dir/reference/gcc-5/coverage_details.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:012021-09-21 19:05:23
Legend:
Date:2021-07-19 19:33:012021-09-21 19:05:24
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/simple1-dir/reference/gcc-6/coverage.html b/gcovr/tests/simple1-dir/reference/gcc-6/coverage.html index 0e4f568b0..8b4e0d52e 100644 --- a/gcovr/tests/simple1-dir/reference/gcc-6/coverage.html +++ b/gcovr/tests/simple1-dir/reference/gcc-6/coverage.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -528,7 +553,7 @@

GCC Code Coverage Report

- + diff --git a/gcovr/tests/simple1-dir/reference/gcc-6/coverage_details.css b/gcovr/tests/simple1-dir/reference/gcc-6/coverage_details.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/simple1-dir/reference/gcc-6/coverage_details.css +++ b/gcovr/tests/simple1-dir/reference/gcc-6/coverage_details.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/simple1-dir/reference/gcc-6/coverage_details.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/simple1-dir/reference/gcc-6/coverage_details.main.cpp.118fcbaaba162ba17933c7893247df3a.html index ca14590a2..c7f10ca65 100644 --- a/gcovr/tests/simple1-dir/reference/gcc-6/coverage_details.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/simple1-dir/reference/gcc-6/coverage_details.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:392021-09-21 19:13:17
Legend:
Date:2021-07-19 19:39:392021-09-21 19:13:17
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/simple1-dir/reference/gcc-8/coverage.html b/gcovr/tests/simple1-dir/reference/gcc-8/coverage.html index 33f58494c..117651627 100644 --- a/gcovr/tests/simple1-dir/reference/gcc-8/coverage.html +++ b/gcovr/tests/simple1-dir/reference/gcc-8/coverage.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -528,7 +553,7 @@

GCC Code Coverage Report

- + diff --git a/gcovr/tests/simple1-dir/reference/gcc-8/coverage_details.css b/gcovr/tests/simple1-dir/reference/gcc-8/coverage_details.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/simple1-dir/reference/gcc-8/coverage_details.css +++ b/gcovr/tests/simple1-dir/reference/gcc-8/coverage_details.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/simple1-dir/reference/gcc-8/coverage_details.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/simple1-dir/reference/gcc-8/coverage_details.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 65efd0b3b..1eb0e1523 100644 --- a/gcovr/tests/simple1-dir/reference/gcc-8/coverage_details.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/simple1-dir/reference/gcc-8/coverage_details.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:222021-09-21 19:18:07
Legend:
Date:2021-07-19 19:36:222021-09-21 19:18:07
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/simple1-stdout/reference/clang-10/coverage.html b/gcovr/tests/simple1-stdout/reference/clang-10/coverage.html index da88dc837..e164055b9 100644 --- a/gcovr/tests/simple1-stdout/reference/clang-10/coverage.html +++ b/gcovr/tests/simple1-stdout/reference/clang-10/coverage.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -528,7 +553,7 @@

GCC Code Coverage Report

- + diff --git a/gcovr/tests/simple1-stdout/reference/gcc-5/coverage.html b/gcovr/tests/simple1-stdout/reference/gcc-5/coverage.html index 814a0da81..98fd0ecd0 100644 --- a/gcovr/tests/simple1-stdout/reference/gcc-5/coverage.html +++ b/gcovr/tests/simple1-stdout/reference/gcc-5/coverage.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -528,7 +553,7 @@

GCC Code Coverage Report

- + diff --git a/gcovr/tests/simple1-stdout/reference/gcc-6/coverage.html b/gcovr/tests/simple1-stdout/reference/gcc-6/coverage.html index 8b0a917e2..841621010 100644 --- a/gcovr/tests/simple1-stdout/reference/gcc-6/coverage.html +++ b/gcovr/tests/simple1-stdout/reference/gcc-6/coverage.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -528,7 +553,7 @@

GCC Code Coverage Report

- + diff --git a/gcovr/tests/simple1-stdout/reference/gcc-8/coverage.html b/gcovr/tests/simple1-stdout/reference/gcc-8/coverage.html index 6cebe14b4..5b1e42c7c 100644 --- a/gcovr/tests/simple1-stdout/reference/gcc-8/coverage.html +++ b/gcovr/tests/simple1-stdout/reference/gcc-8/coverage.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -528,7 +553,7 @@

GCC Code Coverage Report

- + diff --git a/gcovr/tests/simple1/reference/clang-10/coverage-details-includecss.html b/gcovr/tests/simple1/reference/clang-10/coverage-details-includecss.html index 59bc746af..599d6f1b7 100644 --- a/gcovr/tests/simple1/reference/clang-10/coverage-details-includecss.html +++ b/gcovr/tests/simple1/reference/clang-10/coverage-details-includecss.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -528,7 +553,7 @@

GCC Code Coverage Report

- + diff --git a/gcovr/tests/simple1/reference/clang-10/coverage-details-includecss.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/simple1/reference/clang-10/coverage-details-includecss.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 0ba25df07..aba5f9af3 100644 --- a/gcovr/tests/simple1/reference/clang-10/coverage-details-includecss.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/simple1/reference/clang-10/coverage-details-includecss.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -532,7 +557,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 19:45:292021-11-09 20:51:04
Legend:
Date:2021-07-19 19:33:022021-09-21 19:05:25
Legend:
Date:2021-07-19 19:39:402021-09-21 19:13:19
Legend:
Date:2021-07-19 19:36:242021-09-21 19:18:09
Legend:
Date:2021-11-09 19:45:252021-11-09 20:51:00
Legend:
Date:2021-11-09 19:45:252021-11-09 20:51:00
@@ -568,6 +593,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/simple1/reference/clang-10/coverage-details-linkcss.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/simple1/reference/clang-10/coverage-details-linkcss.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 5285beb72..71e72a6f8 100644 --- a/gcovr/tests/simple1/reference/clang-10/coverage-details-linkcss.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/simple1/reference/clang-10/coverage-details-linkcss.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 19:45:252021-11-09 20:51:00
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/simple1/reference/clang-10/coverage-summary-includecss.html b/gcovr/tests/simple1/reference/clang-10/coverage-summary-includecss.html index ded64d571..b725d7394 100644 --- a/gcovr/tests/simple1/reference/clang-10/coverage-summary-includecss.html +++ b/gcovr/tests/simple1/reference/clang-10/coverage-summary-includecss.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -528,7 +553,7 @@

GCC Code Coverage Report

- + diff --git a/gcovr/tests/simple1/reference/gcc-5/coverage-details-includecss.html b/gcovr/tests/simple1/reference/gcc-5/coverage-details-includecss.html index 732ce3e3b..48d8e2e48 100644 --- a/gcovr/tests/simple1/reference/gcc-5/coverage-details-includecss.html +++ b/gcovr/tests/simple1/reference/gcc-5/coverage-details-includecss.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -528,7 +553,7 @@

GCC Code Coverage Report

- + diff --git a/gcovr/tests/simple1/reference/gcc-5/coverage-details-includecss.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/simple1/reference/gcc-5/coverage-details-includecss.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 5dfd3900f..ef8d54840 100644 --- a/gcovr/tests/simple1/reference/gcc-5/coverage-details-includecss.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/simple1/reference/gcc-5/coverage-details-includecss.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -532,7 +557,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 19:45:252021-11-09 20:50:59
Legend:
Date:2021-07-19 19:32:592021-09-21 19:05:22
Legend:
Date:2021-07-19 19:32:592021-09-21 19:05:22
@@ -568,6 +593,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/simple1/reference/gcc-5/coverage-details-linkcss.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/simple1/reference/gcc-5/coverage-details-linkcss.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 5f91a0b6e..fdba65126 100644 --- a/gcovr/tests/simple1/reference/gcc-5/coverage-details-linkcss.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/simple1/reference/gcc-5/coverage-details-linkcss.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:592021-09-21 19:05:22
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/simple1/reference/gcc-5/coverage-summary-includecss.html b/gcovr/tests/simple1/reference/gcc-5/coverage-summary-includecss.html index 9dd98ae9d..52b8ab55f 100644 --- a/gcovr/tests/simple1/reference/gcc-5/coverage-summary-includecss.html +++ b/gcovr/tests/simple1/reference/gcc-5/coverage-summary-includecss.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -528,7 +553,7 @@

GCC Code Coverage Report

- + diff --git a/gcovr/tests/simple1/reference/gcc-6/coverage-details-includecss.html b/gcovr/tests/simple1/reference/gcc-6/coverage-details-includecss.html index eacfc9446..61b25d658 100644 --- a/gcovr/tests/simple1/reference/gcc-6/coverage-details-includecss.html +++ b/gcovr/tests/simple1/reference/gcc-6/coverage-details-includecss.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -528,7 +553,7 @@

GCC Code Coverage Report

- + diff --git a/gcovr/tests/simple1/reference/gcc-6/coverage-details-includecss.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/simple1/reference/gcc-6/coverage-details-includecss.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 7b6d9a7c4..c8b791fd2 100644 --- a/gcovr/tests/simple1/reference/gcc-6/coverage-details-includecss.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/simple1/reference/gcc-6/coverage-details-includecss.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -532,7 +557,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:32:592021-09-21 19:05:21
Legend:
Date:2021-07-19 19:39:372021-09-21 19:13:15
Legend:
Date:2021-07-19 19:39:372021-09-21 19:13:15
@@ -568,6 +593,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/simple1/reference/gcc-6/coverage-details-linkcss.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/simple1/reference/gcc-6/coverage-details-linkcss.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 5ec0c61ad..f7be3d755 100644 --- a/gcovr/tests/simple1/reference/gcc-6/coverage-details-linkcss.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/simple1/reference/gcc-6/coverage-details-linkcss.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:372021-09-21 19:13:15
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/simple1/reference/gcc-6/coverage-summary-includecss.html b/gcovr/tests/simple1/reference/gcc-6/coverage-summary-includecss.html index 6e7f8d41b..4d056602e 100644 --- a/gcovr/tests/simple1/reference/gcc-6/coverage-summary-includecss.html +++ b/gcovr/tests/simple1/reference/gcc-6/coverage-summary-includecss.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -528,7 +553,7 @@

GCC Code Coverage Report

- + diff --git a/gcovr/tests/simple1/reference/gcc-8/coverage-details-includecss.html b/gcovr/tests/simple1/reference/gcc-8/coverage-details-includecss.html index 03c3b878c..c3e21b6f5 100644 --- a/gcovr/tests/simple1/reference/gcc-8/coverage-details-includecss.html +++ b/gcovr/tests/simple1/reference/gcc-8/coverage-details-includecss.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -528,7 +553,7 @@

GCC Code Coverage Report

- + diff --git a/gcovr/tests/simple1/reference/gcc-8/coverage-details-includecss.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/simple1/reference/gcc-8/coverage-details-includecss.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 8106bff70..fef137f45 100644 --- a/gcovr/tests/simple1/reference/gcc-8/coverage-details-includecss.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/simple1/reference/gcc-8/coverage-details-includecss.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -532,7 +557,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:372021-09-21 19:13:15
Legend:
Date:2021-07-19 19:36:212021-09-21 19:18:05
Legend:
Date:2021-07-19 19:36:212021-09-21 19:18:05
@@ -568,6 +593,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/simple1/reference/gcc-8/coverage-details-linkcss.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/simple1/reference/gcc-8/coverage-details-linkcss.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 69fd5c0ce..c6d7e44d5 100644 --- a/gcovr/tests/simple1/reference/gcc-8/coverage-details-linkcss.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/simple1/reference/gcc-8/coverage-details-linkcss.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:212021-09-21 19:18:05
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/simple1/reference/gcc-8/coverage-summary-includecss.html b/gcovr/tests/simple1/reference/gcc-8/coverage-summary-includecss.html index eacf89339..6d02ed399 100644 --- a/gcovr/tests/simple1/reference/gcc-8/coverage-summary-includecss.html +++ b/gcovr/tests/simple1/reference/gcc-8/coverage-summary-includecss.html @@ -380,6 +380,31 @@ margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; @@ -528,7 +553,7 @@

GCC Code Coverage Report

- + diff --git a/gcovr/tests/sort-percentage/reference/clang-10/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html b/gcovr/tests/sort-percentage/reference/clang-10/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html index 7d420f71b..f1cde8192 100644 --- a/gcovr/tests/sort-percentage/reference/clang-10/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html +++ b/gcovr/tests/sort-percentage/reference/clang-10/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:202021-09-21 19:18:05
Legend:
Date:2021-09-06 14:54:372021-09-21 19:22:50
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/sort-percentage/reference/clang-10/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html b/gcovr/tests/sort-percentage/reference/clang-10/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html index 4662da442..4b62a126a 100644 --- a/gcovr/tests/sort-percentage/reference/clang-10/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html +++ b/gcovr/tests/sort-percentage/reference/clang-10/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:372021-09-21 19:22:50
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3barv + + 1 + + called 1 time +
+ _Z4bar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/sort-percentage/reference/clang-10/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html b/gcovr/tests/sort-percentage/reference/clang-10/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html index 16e36e83a..ef1bc2319 100644 --- a/gcovr/tests/sort-percentage/reference/clang-10/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html +++ b/gcovr/tests/sort-percentage/reference/clang-10/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 19:45:302021-11-09 20:51:05
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z7fourbarv + + 1 + + called 1 time +
+ _Z8fourbar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/sort-percentage/reference/clang-10/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html b/gcovr/tests/sort-percentage/reference/clang-10/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html index 1f65e0aac..3d00a34b8 100644 --- a/gcovr/tests/sort-percentage/reference/clang-10/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html +++ b/gcovr/tests/sort-percentage/reference/clang-10/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:372021-09-21 19:22:50
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z9uncoveredv + + 1 + + not called +
+
+
diff --git a/gcovr/tests/sort-percentage/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/sort-percentage/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 3f3c7ffb8..eb9ac8a35 100644 --- a/gcovr/tests/sort-percentage/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/sort-percentage/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:372021-09-21 19:22:50
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 9 + + called 1 time +
+
+
diff --git a/gcovr/tests/sort-percentage/reference/gcc-5/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html b/gcovr/tests/sort-percentage/reference/gcc-5/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html index d1b06be11..85a689aba 100644 --- a/gcovr/tests/sort-percentage/reference/gcc-5/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html +++ b/gcovr/tests/sort-percentage/reference/gcc-5/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:042021-09-21 19:05:27
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/sort-percentage/reference/gcc-5/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html b/gcovr/tests/sort-percentage/reference/gcc-5/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html index e4db06835..c69b6bcb7 100644 --- a/gcovr/tests/sort-percentage/reference/gcc-5/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html +++ b/gcovr/tests/sort-percentage/reference/gcc-5/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:042021-09-21 19:05:27
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/sort-percentage/reference/gcc-5/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html b/gcovr/tests/sort-percentage/reference/gcc-5/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html index b0a756cbe..be62c5b49 100644 --- a/gcovr/tests/sort-percentage/reference/gcc-5/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html +++ b/gcovr/tests/sort-percentage/reference/gcc-5/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:042021-09-21 19:05:27
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/sort-percentage/reference/gcc-5/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html b/gcovr/tests/sort-percentage/reference/gcc-5/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html index 776246c91..eaef3d4f5 100644 --- a/gcovr/tests/sort-percentage/reference/gcc-5/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html +++ b/gcovr/tests/sort-percentage/reference/gcc-5/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:042021-09-21 19:05:27
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/sort-percentage/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/sort-percentage/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 95463ebd7..d5e4e780f 100644 --- a/gcovr/tests/sort-percentage/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/sort-percentage/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:042021-09-21 19:05:27
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 9 + + called 1 time +
+
+
diff --git a/gcovr/tests/sort-percentage/reference/gcc-6/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html b/gcovr/tests/sort-percentage/reference/gcc-6/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html index 733c3aaaa..40ba0d7b7 100644 --- a/gcovr/tests/sort-percentage/reference/gcc-6/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html +++ b/gcovr/tests/sort-percentage/reference/gcc-6/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:422021-09-21 19:13:20
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/sort-percentage/reference/gcc-6/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html b/gcovr/tests/sort-percentage/reference/gcc-6/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html index a591ef0a2..07a713746 100644 --- a/gcovr/tests/sort-percentage/reference/gcc-6/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html +++ b/gcovr/tests/sort-percentage/reference/gcc-6/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:422021-09-21 19:13:20
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/sort-percentage/reference/gcc-6/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html b/gcovr/tests/sort-percentage/reference/gcc-6/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html index 046dff546..1ac9c3d35 100644 --- a/gcovr/tests/sort-percentage/reference/gcc-6/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html +++ b/gcovr/tests/sort-percentage/reference/gcc-6/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:422021-09-21 19:13:20
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/sort-percentage/reference/gcc-6/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html b/gcovr/tests/sort-percentage/reference/gcc-6/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html index cf4706046..4c8e2bc7d 100644 --- a/gcovr/tests/sort-percentage/reference/gcc-6/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html +++ b/gcovr/tests/sort-percentage/reference/gcc-6/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:422021-09-21 19:13:20
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/sort-percentage/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/sort-percentage/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 24900e13d..1f90ddd53 100644 --- a/gcovr/tests/sort-percentage/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/sort-percentage/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:422021-09-21 19:13:20
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 9 + + called 1 time +
+
+
diff --git a/gcovr/tests/sort-percentage/reference/gcc-8/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html b/gcovr/tests/sort-percentage/reference/gcc-8/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html index 352ed2a84..a77fc51e3 100644 --- a/gcovr/tests/sort-percentage/reference/gcc-8/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html +++ b/gcovr/tests/sort-percentage/reference/gcc-8/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:262021-09-21 19:18:10
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/sort-percentage/reference/gcc-8/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html b/gcovr/tests/sort-percentage/reference/gcc-8/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html index f464e851a..e634d0284 100644 --- a/gcovr/tests/sort-percentage/reference/gcc-8/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html +++ b/gcovr/tests/sort-percentage/reference/gcc-8/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:262021-09-21 19:18:10
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/sort-percentage/reference/gcc-8/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html b/gcovr/tests/sort-percentage/reference/gcc-8/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html index 85928f5b6..8f54ed464 100644 --- a/gcovr/tests/sort-percentage/reference/gcc-8/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html +++ b/gcovr/tests/sort-percentage/reference/gcc-8/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:262021-09-21 19:18:10
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/sort-percentage/reference/gcc-8/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html b/gcovr/tests/sort-percentage/reference/gcc-8/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html index 152524622..a709cbad7 100644 --- a/gcovr/tests/sort-percentage/reference/gcc-8/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html +++ b/gcovr/tests/sort-percentage/reference/gcc-8/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:262021-09-21 19:18:10
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/sort-percentage/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/sort-percentage/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 9dd640fb2..309161eb3 100644 --- a/gcovr/tests/sort-percentage/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/sort-percentage/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:262021-09-21 19:18:10
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 9 + + called 1 time +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/clang-10/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html b/gcovr/tests/sort-uncovered/reference/clang-10/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html index d80f0388f..7fc1fce27 100644 --- a/gcovr/tests/sort-uncovered/reference/clang-10/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html +++ b/gcovr/tests/sort-uncovered/reference/clang-10/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:392021-09-21 19:22:51
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/clang-10/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html b/gcovr/tests/sort-uncovered/reference/clang-10/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html index 42c104f6b..bf7d82dc4 100644 --- a/gcovr/tests/sort-uncovered/reference/clang-10/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html +++ b/gcovr/tests/sort-uncovered/reference/clang-10/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:392021-09-21 19:22:51
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3barv + + 1 + + called 1 time +
+ _Z4bar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/clang-10/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html b/gcovr/tests/sort-uncovered/reference/clang-10/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html index 625688000..b593de337 100644 --- a/gcovr/tests/sort-uncovered/reference/clang-10/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html +++ b/gcovr/tests/sort-uncovered/reference/clang-10/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 19:45:322021-11-09 20:51:06
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z7fourbarv + + 1 + + called 1 time +
+ _Z8fourbar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/clang-10/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html b/gcovr/tests/sort-uncovered/reference/clang-10/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html index 76b3ff19f..ebe3b013c 100644 --- a/gcovr/tests/sort-uncovered/reference/clang-10/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html +++ b/gcovr/tests/sort-uncovered/reference/clang-10/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:392021-09-21 19:22:51
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z9uncoveredv + + 1 + + not called +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/sort-uncovered/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 01f16bb5f..6078afbdd 100644 --- a/gcovr/tests/sort-uncovered/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/sort-uncovered/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:392021-09-21 19:22:51
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 9 + + called 1 time +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html b/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html index 4c3a4167a..49417a232 100644 --- a/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html +++ b/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:052021-09-21 19:05:28
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html b/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html index 00f196b43..503549d70 100644 --- a/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html +++ b/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:052021-09-21 19:05:28
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html b/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html index 58d6dceb0..9dd688280 100644 --- a/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html +++ b/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:052021-09-21 19:05:28
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html b/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html index df0c1df9b..cae8b5301 100644 --- a/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html +++ b/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:052021-09-21 19:05:28
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 7e4e12938..93fd8d99f 100644 --- a/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/sort-uncovered/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:052021-09-21 19:05:28
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 9 + + called 1 time +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html b/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html index 0ff49a2a0..ff26d4bbb 100644 --- a/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html +++ b/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:432021-09-21 19:13:21
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html b/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html index 25f2bdd47..15504cc20 100644 --- a/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html +++ b/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:432021-09-21 19:13:21
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html b/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html index 79a7534c7..fb12cf358 100644 --- a/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html +++ b/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:432021-09-21 19:13:21
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html b/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html index 2848559f5..90d7d8123 100644 --- a/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html +++ b/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:432021-09-21 19:13:21
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index a89ecdadf..c854dd68e 100644 --- a/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/sort-uncovered/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:432021-09-21 19:13:21
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 9 + + called 1 time +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html b/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html index d97dd8bc7..18ebf2f6c 100644 --- a/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html +++ b/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.file1.cpp.37fe642e5aafc503ffc5506444f44c6f.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:272021-09-21 19:18:11
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html b/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html index 72ab00eb0..62a91e031 100644 --- a/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html +++ b/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.file2.cpp.6037836e0caa27aaeac26df61b128c1b.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:272021-09-21 19:18:11
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html b/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html index 61c9ffdf9..dcf815e15 100644 --- a/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html +++ b/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.file3.cpp.a89d5d218ee87cc237c08dfe8c96105c.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:272021-09-21 19:18:11
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html b/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html index dc55945fb..6916aa11d 100644 --- a/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html +++ b/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.file4.cpp.02ece764f9b8791575a938834ca3ac75.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:272021-09-21 19:18:11
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 1331843b0..2eaa26e78 100644 --- a/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/sort-uncovered/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:272021-09-21 19:18:11
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 9 + + called 1 time +
+
+
diff --git a/gcovr/tests/subfolder-includes/reference/clang-10/coverage.css b/gcovr/tests/subfolder-includes/reference/clang-10/coverage.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/subfolder-includes/reference/clang-10/coverage.css +++ b/gcovr/tests/subfolder-includes/reference/clang-10/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/subfolder-includes/reference/clang-10/coverage.lib.cpp.da76a1556dcc5fe5f8ec3352e7d825b2.html b/gcovr/tests/subfolder-includes/reference/clang-10/coverage.lib.cpp.da76a1556dcc5fe5f8ec3352e7d825b2.html index ffd22d8c7..c1b45d519 100644 --- a/gcovr/tests/subfolder-includes/reference/clang-10/coverage.lib.cpp.da76a1556dcc5fe5f8ec3352e7d825b2.html +++ b/gcovr/tests/subfolder-includes/reference/clang-10/coverage.lib.cpp.da76a1556dcc5fe5f8ec3352e7d825b2.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:392021-09-21 19:22:51
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3foov + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/subfolder-includes/reference/clang-10/coverage.lib.h.4acb6a61176c15c0bede65bfbcd51fe2.html b/gcovr/tests/subfolder-includes/reference/clang-10/coverage.lib.h.4acb6a61176c15c0bede65bfbcd51fe2.html index be749aa26..69a3c22c1 100644 --- a/gcovr/tests/subfolder-includes/reference/clang-10/coverage.lib.h.4acb6a61176c15c0bede65bfbcd51fe2.html +++ b/gcovr/tests/subfolder-includes/reference/clang-10/coverage.lib.h.4acb6a61176c15c0bede65bfbcd51fe2.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 19:45:332021-11-09 20:51:07
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3barv + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/subfolder-includes/reference/clang-10/coverage.main.cpp.16fd1b6ab93c2a3c530d0ec6b50173dc.html b/gcovr/tests/subfolder-includes/reference/clang-10/coverage.main.cpp.16fd1b6ab93c2a3c530d0ec6b50173dc.html index 2334e8345..4221108ed 100644 --- a/gcovr/tests/subfolder-includes/reference/clang-10/coverage.main.cpp.16fd1b6ab93c2a3c530d0ec6b50173dc.html +++ b/gcovr/tests/subfolder-includes/reference/clang-10/coverage.main.cpp.16fd1b6ab93c2a3c530d0ec6b50173dc.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:392021-09-21 19:22:51
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 4 + + called 1 time +
+
+
diff --git a/gcovr/tests/subfolder-includes/reference/gcc-5/coverage.css b/gcovr/tests/subfolder-includes/reference/gcc-5/coverage.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/subfolder-includes/reference/gcc-5/coverage.css +++ b/gcovr/tests/subfolder-includes/reference/gcc-5/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/subfolder-includes/reference/gcc-5/coverage.lib.cpp.da76a1556dcc5fe5f8ec3352e7d825b2.html b/gcovr/tests/subfolder-includes/reference/gcc-5/coverage.lib.cpp.da76a1556dcc5fe5f8ec3352e7d825b2.html index 15a2bddd5..9c735bd3d 100644 --- a/gcovr/tests/subfolder-includes/reference/gcc-5/coverage.lib.cpp.da76a1556dcc5fe5f8ec3352e7d825b2.html +++ b/gcovr/tests/subfolder-includes/reference/gcc-5/coverage.lib.cpp.da76a1556dcc5fe5f8ec3352e7d825b2.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:062021-09-21 19:05:29
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo() + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/subfolder-includes/reference/gcc-5/coverage.lib.h.4acb6a61176c15c0bede65bfbcd51fe2.html b/gcovr/tests/subfolder-includes/reference/gcc-5/coverage.lib.h.4acb6a61176c15c0bede65bfbcd51fe2.html index 57ab7df9b..6927a5990 100644 --- a/gcovr/tests/subfolder-includes/reference/gcc-5/coverage.lib.h.4acb6a61176c15c0bede65bfbcd51fe2.html +++ b/gcovr/tests/subfolder-includes/reference/gcc-5/coverage.lib.h.4acb6a61176c15c0bede65bfbcd51fe2.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:062021-09-21 19:05:29
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/subfolder-includes/reference/gcc-5/coverage.main.cpp.16fd1b6ab93c2a3c530d0ec6b50173dc.html b/gcovr/tests/subfolder-includes/reference/gcc-5/coverage.main.cpp.16fd1b6ab93c2a3c530d0ec6b50173dc.html index e5173da5e..2422b0398 100644 --- a/gcovr/tests/subfolder-includes/reference/gcc-5/coverage.main.cpp.16fd1b6ab93c2a3c530d0ec6b50173dc.html +++ b/gcovr/tests/subfolder-includes/reference/gcc-5/coverage.main.cpp.16fd1b6ab93c2a3c530d0ec6b50173dc.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:062021-09-21 19:05:29
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 4 + + called 1 time +
+
+
diff --git a/gcovr/tests/subfolder-includes/reference/gcc-6/coverage.css b/gcovr/tests/subfolder-includes/reference/gcc-6/coverage.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/subfolder-includes/reference/gcc-6/coverage.css +++ b/gcovr/tests/subfolder-includes/reference/gcc-6/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/subfolder-includes/reference/gcc-6/coverage.lib.cpp.da76a1556dcc5fe5f8ec3352e7d825b2.html b/gcovr/tests/subfolder-includes/reference/gcc-6/coverage.lib.cpp.da76a1556dcc5fe5f8ec3352e7d825b2.html index 8cd828261..6fa92ed36 100644 --- a/gcovr/tests/subfolder-includes/reference/gcc-6/coverage.lib.cpp.da76a1556dcc5fe5f8ec3352e7d825b2.html +++ b/gcovr/tests/subfolder-includes/reference/gcc-6/coverage.lib.cpp.da76a1556dcc5fe5f8ec3352e7d825b2.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:442021-09-21 19:13:22
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo() + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/subfolder-includes/reference/gcc-6/coverage.lib.h.4acb6a61176c15c0bede65bfbcd51fe2.html b/gcovr/tests/subfolder-includes/reference/gcc-6/coverage.lib.h.4acb6a61176c15c0bede65bfbcd51fe2.html index 83be28e0b..2b4fc4349 100644 --- a/gcovr/tests/subfolder-includes/reference/gcc-6/coverage.lib.h.4acb6a61176c15c0bede65bfbcd51fe2.html +++ b/gcovr/tests/subfolder-includes/reference/gcc-6/coverage.lib.h.4acb6a61176c15c0bede65bfbcd51fe2.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:442021-09-21 19:13:22
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/subfolder-includes/reference/gcc-6/coverage.main.cpp.16fd1b6ab93c2a3c530d0ec6b50173dc.html b/gcovr/tests/subfolder-includes/reference/gcc-6/coverage.main.cpp.16fd1b6ab93c2a3c530d0ec6b50173dc.html index ce0719874..c04d2d9d3 100644 --- a/gcovr/tests/subfolder-includes/reference/gcc-6/coverage.main.cpp.16fd1b6ab93c2a3c530d0ec6b50173dc.html +++ b/gcovr/tests/subfolder-includes/reference/gcc-6/coverage.main.cpp.16fd1b6ab93c2a3c530d0ec6b50173dc.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:442021-09-21 19:13:22
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 4 + + called 1 time +
+
+
diff --git a/gcovr/tests/subfolder-includes/reference/gcc-8/coverage.css b/gcovr/tests/subfolder-includes/reference/gcc-8/coverage.css index dbacc6fce..37055de34 100644 --- a/gcovr/tests/subfolder-includes/reference/gcc-8/coverage.css +++ b/gcovr/tests/subfolder-includes/reference/gcc-8/coverage.css @@ -372,6 +372,31 @@ pre margin-bottom: 0; } +.listOfFunctions td, .listOfFunctions th { + padding: 0 10px; +} +.listOfFunctions th +{ + text-align: center; + color: white; + background-color: SteelBlue; +} +.listOfFunctions tr > td { + background: aliceblue; +} +.listOfFunctions tr:nth-child(even) > td { + background: LightSteelBlue +} +.listOfFunctions tr:hover > td +{ + background-color: #ddd; +} +.listOfFunctions tr > td > a +{ + text-decoration: none; + color: inherit; +} + .source-line { height : 15px; diff --git a/gcovr/tests/subfolder-includes/reference/gcc-8/coverage.lib.cpp.da76a1556dcc5fe5f8ec3352e7d825b2.html b/gcovr/tests/subfolder-includes/reference/gcc-8/coverage.lib.cpp.da76a1556dcc5fe5f8ec3352e7d825b2.html index 1758963ff..af6f03f36 100644 --- a/gcovr/tests/subfolder-includes/reference/gcc-8/coverage.lib.cpp.da76a1556dcc5fe5f8ec3352e7d825b2.html +++ b/gcovr/tests/subfolder-includes/reference/gcc-8/coverage.lib.cpp.da76a1556dcc5fe5f8ec3352e7d825b2.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:282021-09-21 19:18:12
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo() + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/subfolder-includes/reference/gcc-8/coverage.lib.h.4acb6a61176c15c0bede65bfbcd51fe2.html b/gcovr/tests/subfolder-includes/reference/gcc-8/coverage.lib.h.4acb6a61176c15c0bede65bfbcd51fe2.html index f3f7b62c6..3728ff5fa 100644 --- a/gcovr/tests/subfolder-includes/reference/gcc-8/coverage.lib.h.4acb6a61176c15c0bede65bfbcd51fe2.html +++ b/gcovr/tests/subfolder-includes/reference/gcc-8/coverage.lib.h.4acb6a61176c15c0bede65bfbcd51fe2.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:282021-09-21 19:18:12
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 2 + + called 1 time +
+
+
diff --git a/gcovr/tests/subfolder-includes/reference/gcc-8/coverage.main.cpp.16fd1b6ab93c2a3c530d0ec6b50173dc.html b/gcovr/tests/subfolder-includes/reference/gcc-8/coverage.main.cpp.16fd1b6ab93c2a3c530d0ec6b50173dc.html index 409fcde90..76e4e8109 100644 --- a/gcovr/tests/subfolder-includes/reference/gcc-8/coverage.main.cpp.16fd1b6ab93c2a3c530d0ec6b50173dc.html +++ b/gcovr/tests/subfolder-includes/reference/gcc-8/coverage.main.cpp.16fd1b6ab93c2a3c530d0ec6b50173dc.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:282021-09-21 19:18:12
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 4 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/threaded/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index 9a80b801b..ecbbde9b0 100644 --- a/gcovr/tests/threaded/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/threaded/reference/clang-10/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:412021-09-21 19:22:53
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/threaded/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index 5fee2b617..7969ddf02 100644 --- a/gcovr/tests/threaded/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/threaded/reference/clang-10/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:412021-09-21 19:22:53
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3barv + + 1 + + called 1 time +
+ _Z4bar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/threaded/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/threaded/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index d4cad92a5..c4d5e438a 100644 --- a/gcovr/tests/threaded/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/threaded/reference/clang-10/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 19:45:352021-11-09 20:51:09
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z7fourbarv + + 1 + + called 1 time +
+ _Z8fourbar_v + + 8 + + not called +
+
+
diff --git a/gcovr/tests/threaded/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/threaded/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index 2193f941e..090b8a6e6 100644 --- a/gcovr/tests/threaded/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/threaded/reference/clang-10/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:412021-09-21 19:22:53
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z6foobari + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/threaded/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index 173a87989..ad9b425c4 100644 --- a/gcovr/tests/threaded/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/threaded/reference/clang-10/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:412021-09-21 19:22:53
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo5i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/threaded/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index 2ab608dfb..3edfb1f4f 100644 --- a/gcovr/tests/threaded/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/threaded/reference/clang-10/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:412021-09-21 19:22:53
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z4foo6i + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/threaded/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index 3e55f001a..b70e6ac3a 100644 --- a/gcovr/tests/threaded/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/threaded/reference/clang-10/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:412021-09-21 19:22:53
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ _Z9uncoveredv + + 1 + + not called +
+
+
diff --git a/gcovr/tests/threaded/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/threaded/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index f04370521..475bd15fb 100644 --- a/gcovr/tests/threaded/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/threaded/reference/clang-10/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:412021-09-21 19:22:53
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/threaded/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index 92f6a4d04..6e5a980de 100644 --- a/gcovr/tests/threaded/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/threaded/reference/gcc-5/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:082021-09-21 19:05:31
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/threaded/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index 9ddd28d83..9ac102e0f 100644 --- a/gcovr/tests/threaded/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/threaded/reference/gcc-5/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:082021-09-21 19:05:31
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/threaded/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index 0b8d048fe..91d6719ca 100644 --- a/gcovr/tests/threaded/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/threaded/reference/gcc-5/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:082021-09-21 19:05:31
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/threaded/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index f3c9dac10..f7f009202 100644 --- a/gcovr/tests/threaded/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/threaded/reference/gcc-5/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:082021-09-21 19:05:31
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foobar(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/threaded/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index 15d5685c8..c3f3529a0 100644 --- a/gcovr/tests/threaded/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/threaded/reference/gcc-5/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:082021-09-21 19:05:31
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo5(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/threaded/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index 9abaf9ec1..c876ec1b2 100644 --- a/gcovr/tests/threaded/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/threaded/reference/gcc-5/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:082021-09-21 19:05:31
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo6(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/threaded/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index f059bac19..a95bb3b25 100644 --- a/gcovr/tests/threaded/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/threaded/reference/gcc-5/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:082021-09-21 19:05:31
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/threaded/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index 032a08c91..c04a2cf5d 100644 --- a/gcovr/tests/threaded/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/threaded/reference/gcc-5/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:082021-09-21 19:05:31
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/threaded/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index a660021d2..346096c67 100644 --- a/gcovr/tests/threaded/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/threaded/reference/gcc-6/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:462021-09-21 19:13:25
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/threaded/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index 5ceebc79a..e2ad006dc 100644 --- a/gcovr/tests/threaded/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/threaded/reference/gcc-6/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:462021-09-21 19:13:25
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/threaded/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index 72ace0a30..319149582 100644 --- a/gcovr/tests/threaded/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/threaded/reference/gcc-6/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:462021-09-21 19:13:25
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/threaded/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index 8ccb988f6..5cc4693cc 100644 --- a/gcovr/tests/threaded/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/threaded/reference/gcc-6/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:462021-09-21 19:13:25
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foobar(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/threaded/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index 0273bf033..0713b0106 100644 --- a/gcovr/tests/threaded/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/threaded/reference/gcc-6/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:462021-09-21 19:13:25
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo5(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/threaded/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index 0992b1812..5579cb27c 100644 --- a/gcovr/tests/threaded/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/threaded/reference/gcc-6/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:462021-09-21 19:13:25
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo6(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/threaded/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index cfd8229ce..3d09c9d35 100644 --- a/gcovr/tests/threaded/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/threaded/reference/gcc-6/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:462021-09-21 19:13:25
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/threaded/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index 86c288b4a..4c089999f 100644 --- a/gcovr/tests/threaded/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/threaded/reference/gcc-6/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:462021-09-21 19:13:25
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html b/gcovr/tests/threaded/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html index 1b83c53cc..8e8c321a5 100644 --- a/gcovr/tests/threaded/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html +++ b/gcovr/tests/threaded/reference/gcc-8/coverage.file1.cpp.11975e1ce5d9c157e76130f444523bea.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:302021-09-21 19:18:14
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html b/gcovr/tests/threaded/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html index 5564a56aa..5def77d71 100644 --- a/gcovr/tests/threaded/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html +++ b/gcovr/tests/threaded/reference/gcc-8/coverage.file2.cpp.3545800e72707f891cf27b6eed96d85a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:302021-09-21 19:18:14
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ bar() + + 1 + + called 1 time +
+ bar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html b/gcovr/tests/threaded/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html index 703e6c9db..d1546b37f 100644 --- a/gcovr/tests/threaded/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html +++ b/gcovr/tests/threaded/reference/gcc-8/coverage.file3.cpp.bcfa344b5512d8cd5857f2fe86511d71.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:302021-09-21 19:18:14
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ fourbar() + + 1 + + called 1 time +
+ fourbar_() + + 8 + + not called +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html b/gcovr/tests/threaded/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html index c6b3e36c9..021052a66 100644 --- a/gcovr/tests/threaded/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html +++ b/gcovr/tests/threaded/reference/gcc-8/coverage.file4.cpp.9414ee61cc57b8771eb308d9925280d1.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:302021-09-21 19:18:14
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foobar(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html b/gcovr/tests/threaded/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html index e159ee693..d591dd912 100644 --- a/gcovr/tests/threaded/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html +++ b/gcovr/tests/threaded/reference/gcc-8/coverage.file5.cpp.4f0be33a4dcfe398ba897b87f58ca7ce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:302021-09-21 19:18:14
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo5(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html b/gcovr/tests/threaded/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html index d1e8fe7f3..60227726c 100644 --- a/gcovr/tests/threaded/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html +++ b/gcovr/tests/threaded/reference/gcc-8/coverage.file6.cpp.521da11c6869ce8705f0ee8a4667568d.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:302021-09-21 19:18:14
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ foo6(int) + + 1 + + called 1 time +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html b/gcovr/tests/threaded/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html index 78d0dc03b..25c4281ba 100644 --- a/gcovr/tests/threaded/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html +++ b/gcovr/tests/threaded/reference/gcc-8/coverage.file7.cpp.fa9d180b71a3402bed7d24bb1966eaf5.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:302021-09-21 19:18:14
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 0 1 - 0.0% + 0.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ uncovered() + + 1 + + not called +
+
+
diff --git a/gcovr/tests/threaded/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html b/gcovr/tests/threaded/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html index 62aa29710..7d02e273d 100644 --- a/gcovr/tests/threaded/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html +++ b/gcovr/tests/threaded/reference/gcc-8/coverage.main.cpp.9ddfb860fa969e91a7bb17e903455bce.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:302021-09-21 19:18:14
@@ -48,7 +48,7 @@

GCC Code Coverage Report

Functions: 1 1 - 100.0% + 100.0% Branches: @@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/update-data/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/update-data/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index e5b6d3747..9aa198569 100644 --- a/gcovr/tests/update-data/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/update-data/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:422021-09-21 19:22:55
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/update-data/reference/clang-10/coverage.update-data.c.d336a0298bf4843f0a6fde2a6a938e7f.html b/gcovr/tests/update-data/reference/clang-10/coverage.update-data.c.d336a0298bf4843f0a6fde2a6a938e7f.html index da6e47c88..d18e4ab5d 100644 --- a/gcovr/tests/update-data/reference/clang-10/coverage.update-data.c.d336a0298bf4843f0a6fde2a6a938e7f.html +++ b/gcovr/tests/update-data/reference/clang-10/coverage.update-data.c.d336a0298bf4843f0a6fde2a6a938e7f.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:422021-09-21 19:22:55
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ update_data + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/update-data/reference/clang-10/coverage.update-data.h.522c29cd66298f97fb9ff5a561c844e0.html b/gcovr/tests/update-data/reference/clang-10/coverage.update-data.h.522c29cd66298f97fb9ff5a561c844e0.html index 72582c86f..4b99c2695 100644 --- a/gcovr/tests/update-data/reference/clang-10/coverage.update-data.h.522c29cd66298f97fb9ff5a561c844e0.html +++ b/gcovr/tests/update-data/reference/clang-10/coverage.update-data.h.522c29cd66298f97fb9ff5a561c844e0.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:422021-09-21 19:22:55
@@ -62,6 +62,61 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _ZL16called_from_bothi + + 17 + + called 1 time +
+ _ZL16called_from_mainv + + 7 + + called 1 time +
+ called_from_both + + 17 + + called 1 time +
+ called_from_update_data + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/update-data/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/update-data/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index b008fd734..92868b4d6 100644 --- a/gcovr/tests/update-data/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/update-data/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:092021-09-21 19:05:32
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/update-data/reference/gcc-5/coverage.update-data.c.d336a0298bf4843f0a6fde2a6a938e7f.html b/gcovr/tests/update-data/reference/gcc-5/coverage.update-data.c.d336a0298bf4843f0a6fde2a6a938e7f.html index d3eb83a00..4316b3f08 100644 --- a/gcovr/tests/update-data/reference/gcc-5/coverage.update-data.c.d336a0298bf4843f0a6fde2a6a938e7f.html +++ b/gcovr/tests/update-data/reference/gcc-5/coverage.update-data.c.d336a0298bf4843f0a6fde2a6a938e7f.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:092021-09-21 19:05:32
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ update_data + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/update-data/reference/gcc-5/coverage.update-data.h.522c29cd66298f97fb9ff5a561c844e0.html b/gcovr/tests/update-data/reference/gcc-5/coverage.update-data.h.522c29cd66298f97fb9ff5a561c844e0.html index 5e0c58e21..b27de392a 100644 --- a/gcovr/tests/update-data/reference/gcc-5/coverage.update-data.h.522c29cd66298f97fb9ff5a561c844e0.html +++ b/gcovr/tests/update-data/reference/gcc-5/coverage.update-data.h.522c29cd66298f97fb9ff5a561c844e0.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:092021-09-21 19:05:32
@@ -62,6 +62,50 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ called_from_both + + 17 + + called 2 times +
+ called_from_main + + 7 + + called 1 time +
+ called_from_update_data + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/update-data/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/update-data/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 7e8a4d2a7..f6b7939c9 100644 --- a/gcovr/tests/update-data/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/update-data/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:472021-09-21 19:13:26
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/update-data/reference/gcc-6/coverage.update-data.c.d336a0298bf4843f0a6fde2a6a938e7f.html b/gcovr/tests/update-data/reference/gcc-6/coverage.update-data.c.d336a0298bf4843f0a6fde2a6a938e7f.html index 8ceef903d..315e721b1 100644 --- a/gcovr/tests/update-data/reference/gcc-6/coverage.update-data.c.d336a0298bf4843f0a6fde2a6a938e7f.html +++ b/gcovr/tests/update-data/reference/gcc-6/coverage.update-data.c.d336a0298bf4843f0a6fde2a6a938e7f.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:472021-09-21 19:13:26
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ update_data + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/update-data/reference/gcc-6/coverage.update-data.h.522c29cd66298f97fb9ff5a561c844e0.html b/gcovr/tests/update-data/reference/gcc-6/coverage.update-data.h.522c29cd66298f97fb9ff5a561c844e0.html index 1a32ae873..170e9670d 100644 --- a/gcovr/tests/update-data/reference/gcc-6/coverage.update-data.h.522c29cd66298f97fb9ff5a561c844e0.html +++ b/gcovr/tests/update-data/reference/gcc-6/coverage.update-data.h.522c29cd66298f97fb9ff5a561c844e0.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:472021-09-21 19:13:26
@@ -62,6 +62,50 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ called_from_both + + 17 + + called 2 times +
+ called_from_main + + 7 + + called 1 time +
+ called_from_update_data + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/update-data/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/update-data/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 0ebda845b..98593bd04 100644 --- a/gcovr/tests/update-data/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/update-data/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:312021-09-21 19:18:16
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ main + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/update-data/reference/gcc-8/coverage.update-data.c.d336a0298bf4843f0a6fde2a6a938e7f.html b/gcovr/tests/update-data/reference/gcc-8/coverage.update-data.c.d336a0298bf4843f0a6fde2a6a938e7f.html index 5fe52f5bb..7b92c0337 100644 --- a/gcovr/tests/update-data/reference/gcc-8/coverage.update-data.c.d336a0298bf4843f0a6fde2a6a938e7f.html +++ b/gcovr/tests/update-data/reference/gcc-8/coverage.update-data.c.d336a0298bf4843f0a6fde2a6a938e7f.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:312021-09-21 19:18:16
@@ -62,6 +62,28 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + +
FunctionLineCall count
+ update_data + + 3 + + called 1 time +
+
+
diff --git a/gcovr/tests/update-data/reference/gcc-8/coverage.update-data.h.522c29cd66298f97fb9ff5a561c844e0.html b/gcovr/tests/update-data/reference/gcc-8/coverage.update-data.h.522c29cd66298f97fb9ff5a561c844e0.html index cb1cb2c58..b2ac9d53a 100644 --- a/gcovr/tests/update-data/reference/gcc-8/coverage.update-data.h.522c29cd66298f97fb9ff5a561c844e0.html +++ b/gcovr/tests/update-data/reference/gcc-8/coverage.update-data.h.522c29cd66298f97fb9ff5a561c844e0.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:312021-09-21 19:18:16
@@ -62,6 +62,50 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ called_from_both + + 17 + + called 2 times +
+ called_from_main + + 7 + + called 1 time +
+ called_from_update_data + + 12 + + called 1 time +
+
+
diff --git a/gcovr/tests/use-existing/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/use-existing/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index f870f4deb..3d01b2249 100644 --- a/gcovr/tests/use-existing/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/use-existing/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-09-06 14:54:442021-09-21 19:22:56
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/use-existing/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/use-existing/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 901ac3646..a4fc8bac4 100644 --- a/gcovr/tests/use-existing/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/use-existing/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:102021-09-21 19:05:33
@@ -62,6 +62,50 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 4 + + called 1 time +
+ _Z41__static_initialization_and_destruction_0ii + + 26 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/use-existing/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/use-existing/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 6ef148e99..569bee479 100644 --- a/gcovr/tests/use-existing/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/use-existing/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:482021-09-21 19:13:27
@@ -62,6 +62,50 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 4 + + called 1 time +
+ _Z41__static_initialization_and_destruction_0ii + + 26 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/use-existing/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/use-existing/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index a3f497a02..f885115ba 100644 --- a/gcovr/tests/use-existing/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/use-existing/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:322021-09-21 19:18:17
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/wspace/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/wspace/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 5c0ba90cd..9fa2d03a8 100644 --- a/gcovr/tests/wspace/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/wspace/reference/clang-10/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-11-09 19:45:392021-11-09 20:51:13
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ _Z3fooi + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/wspace/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/wspace/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index 955308848..c2d8585b0 100644 --- a/gcovr/tests/wspace/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/wspace/reference/gcc-5/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:33:122021-09-21 19:05:34
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/wspace/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/wspace/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index b9379367e..62f01a741 100644 --- a/gcovr/tests/wspace/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/wspace/reference/gcc-6/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:39:502021-09-21 19:13:28
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/tests/wspace/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html b/gcovr/tests/wspace/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html index e77c6e5f6..d95953388 100644 --- a/gcovr/tests/wspace/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html +++ b/gcovr/tests/wspace/reference/gcc-8/coverage.main.cpp.118fcbaaba162ba17933c7893247df3a.html @@ -26,7 +26,7 @@

GCC Code Coverage Report

- +
Date:2021-07-19 19:36:342021-09-21 19:18:18
@@ -62,6 +62,39 @@

GCC Code Coverage Report


+
+ List of functions + + + + + + + + + + + + + + + + +
FunctionLineCall count
+ foo(int) + + 4 + + called 1 time +
+ main + + 13 + + called 1 time +
+
+
diff --git a/gcovr/writer/html.py b/gcovr/writer/html.py index a38f312eb..36e792948 100644 --- a/gcovr/writer/html.py +++ b/gcovr/writer/html.py @@ -357,7 +357,6 @@ def print_html_report(covdata, output_file, options): cdata_fname = {} cdata_sourcefile = {} for f in keys: - cdata = covdata[f] filtered_fname = options.root_filter.sub('', f) files.append(filtered_fname) dirs.append(os.path.dirname(filtered_fname) + os.sep) @@ -404,6 +403,20 @@ def print_html_report(covdata, output_file, options): data['filename'] = cdata_fname[f] + # Only use demangled names (containing a brace) + data['function_list'] = [] + for name in sorted(cdata.functions.keys()): + fcdata = cdata.functions[name] + fdata = dict() + fdata["name"] = name + fdata["line"] = fcdata.lineno + fdata["count"] = fcdata.count + fdata["class"] = coverage_to_class( + 0 if fcdata.count >= 0 else high_threshold, + medium_threshold, + high_threshold + ) + data['function_list'].append(fdata) functions = dict() data['functions'] = functions