aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/development/gcov/cov.cc
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2023-05-17 18:44:37 +0200
committerJohannes Stoelp <johannes.stoelp@gmail.com>2023-05-28 22:43:44 +0200
commit2b0c34c8d13ab4a899a722ae272a366bf6051168 (patch)
treea38de48cf86b8e9c012b116f18d75f44c8438eea /src/development/gcov/cov.cc
parente526873c5277ad28f7efb24d949240f07a95dd43 (diff)
downloadnotes-2b0c34c8d13ab4a899a722ae272a366bf6051168.tar.gz
notes-2b0c34c8d13ab4a899a722ae272a366bf6051168.zip
gcov: example to generate coverage
Diffstat (limited to 'src/development/gcov/cov.cc')
-rw-r--r--src/development/gcov/cov.cc17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/development/gcov/cov.cc b/src/development/gcov/cov.cc
new file mode 100644
index 0000000..3737d81
--- /dev/null
+++ b/src/development/gcov/cov.cc
@@ -0,0 +1,17 @@
+// Copyright (C) 2023 johannst
+
+#include <cstdio>
+
+void tell_me(int desc) {
+ if (desc & 1) {
+ std::puts("this");
+ } else {
+ std::puts("that");
+ }
+}
+
+int main(int argc, char *argv[]) {
+ tell_me(argc);
+ tell_me(argc);
+ return 0;
+}