From 82036458e6475433ba1556c22c8285e2bfcec69c Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sun, 18 Dec 2016 15:34:03 -0500 Subject: [PATCH] build unit tests with --coverage --- wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wscript b/wscript index 137488a..8f3f696 100644 --- a/wscript +++ b/wscript @@ -42,4 +42,5 @@ def build(bld): includes = test_includes, defines = defines, lib = test_libs, - cxxflags = ["-Wall", "-std=gnu++14"]) + cxxflags = ["-Wall", "-std=gnu++14", "--coverage"], + linkflags = ["--coverage"])