coverage: Allow to run coverage everywhere 15/21215/1
authorJosé Bollo <jose.bollo@iot.bzh>
Tue, 30 Apr 2019 20:38:28 +0000 (22:38 +0200)
committerJosé Bollo <jose.bollo@iot.bzh>
Tue, 30 Apr 2019 20:38:55 +0000 (22:38 +0200)
Coverage presumed that an available afb-daemon without
coverage instrumentation was available in the PATH.

This fix that problem by compiling that requirement.

Bug-AGL: SPEC-1130

Change-Id: Ic3435d73e830d630bef63dfb8e9b2ff9f1bf043c
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
coverage/.gitignore
coverage/bin/Makefile

index a585430..f0d02b0 100644 (file)
@@ -5,6 +5,7 @@ bin/bugs
 run-test.output
 bin/afb-client
 bin/afb-daemon-cov
+bin/afb-daemon-nocov
 bin/test-apiset
 bin/test-session
 bin/test-wrap-json
index 28c09cc..9ebfa9d 100644 (file)
@@ -25,6 +25,7 @@ tests = \
        test-wrap-json
 
 targets = \
+       afb-daemon-nocov \
        afb-daemon-cov \
        afb-client \
        $(tests) \
@@ -82,7 +83,7 @@ afb_lib_obj = $(patsubst $(srcdir)/%.c,%.o,$(afb_lib_src))
 afb_lib = afb-lib.a
 afb_lib_defs = $(defs)
 
-afb_daemon_srcs = $(srcdir)/main-afb-daemon.c $(afb_lib_obj)
+afb_daemon_srcs = $(srcdir)/main-afb-daemon.c
 afb_daemon_defs = $(afb_lib_defs)
 
 afb_client_srcs = $(srcdir)/main-afb-client-demo.c $(srcdir)/afb-ws-client.c $(afb_lib_src)
@@ -111,9 +112,13 @@ binding_flags = -shared -fPIC -Wl,--version-script=$(samdir)/export.map
        @echo creation of $@
        @gcc -c -o $@ $< --coverage $(afb_lib_defs) $(ccflags)
 
-afb-daemon-cov: $(afb_daemon_srcs)
+afb-daemon-cov: $(afb_daemon_srcs) $(afb_lib_obj)
        @echo creation of $@
-       @gcc -o $@ $(afb_daemon_srcs) --coverage $(afb_daemon_defs) $(cflags)
+       @gcc -o $@ $(afb_daemon_srcs) $(afb_lib_obj) --coverage $(afb_daemon_defs) $(cflags)
+
+afb-daemon-nocov: $(afb_daemon_srcs) $(afb_lib_src)
+       @echo creation of $@
+       @gcc -o $@ $(afb_daemon_srcs) $(afb_lib_src) $(afb_daemon_defs) $(cflags)
 
 afb-client: $(afb_client_srcs)
        @echo creation of $@