From 9ff21ebdb9a62dffedc24174215dc37012291bce Mon Sep 17 00:00:00 2001 From: Badlop Date: Wed, 30 Jun 2021 11:09:58 +0200 Subject: [PATCH] Fix typo in gcov compilation code --- rebar.config.script | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rebar.config.script b/rebar.config.script index 209e3cf..56a94c7 100644 --- a/rebar.config.script +++ b/rebar.config.script @@ -128,10 +128,10 @@ Rules = [ {[port_env, "LDFLAGS"], true, AppendStr(CfgLDFlags), "$LDFLAGS"}, {[post_hooks], (not IsRebar3) and (CfgWithGCov == "true"), - AppendList([{eunit, "gcov -o c_src mqtree"}, + AppendList([{eunit, "gcov -o c_src sqlite3_drv"}, {eunit, "mv *.gcov .eunit/"}]), []}, {[post_hooks], IsRebar3 and (CfgWithGCov == "true"), - AppendList([{eunit, "gcov -o c_src mqtree"}, + AppendList([{eunit, "gcov -o c_src sqlite3_drv"}, {eunit, "mv *.gcov _build/test/cover/"}]), []}, {[port_env, "LDFLAGS"], CfgWithGCov == "true", AppendStr("--coverage"), ""},