* [PATCH] trace-cmd: Add Makefie target for memory test
@ 2023-06-07 12:02 Tzvetomir Stoyanov (VMware)
2023-06-07 17:24 ` Steven Rostedt
0 siblings, 1 reply; 2+ messages in thread
From: Tzvetomir Stoyanov (VMware) @ 2023-06-07 12:02 UTC (permalink / raw)
To: rostedt; +Cc: linux-trace-devel
Having an automated test for memory problems is a useful functionality.
Combined with the trace-cmd unit test, it can be used to detect any
memory issues in the application. New Makefile target is added, which
runs the trace-cmd unit test on valgrind, to check for memory allocation
errors.
Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com>
---
Makefile | 3 +++
utest/Makefile | 15 +++++++++++++++
2 files changed, 18 insertions(+)
diff --git a/Makefile b/Makefile
index ea83f600..9183ba7a 100644
--- a/Makefile
+++ b/Makefile
@@ -456,6 +456,9 @@ ifneq ($(CUNIT_INSTALLED),1)
endif
$(Q)$(MAKE) -C $(src)/utest $@
+test_mem: force test
+ $(Q)$(MAKE) -C $(src)/utest $@
+
plugins_tracecmd: force $(obj)/lib/trace-cmd/plugins/tracecmd_plugin_dir
$(Q)$(MAKE) -C $(src)/lib/trace-cmd/plugins
diff --git a/utest/Makefile b/utest/Makefile
index 337db9bf..480edcd3 100644
--- a/utest/Makefile
+++ b/utest/Makefile
@@ -17,6 +17,8 @@ LIBS += $(ZLIB_LDLAGS) $(LIBZSTD_LDLAGS)
OBJS := $(OBJS:%.o=$(bdir)/%.o)
DEPS := $(OBJS:$(bdir)/%.o=$(bdir)/.%.d)
+VALGRIND = $(shell which valgrind)
+
$(bdir):
@mkdir -p $(bdir)
@@ -39,5 +41,18 @@ dep_includes := $(wildcard $(DEPS))
test: $(TARGETS)
+test_mem: test
+ifeq (, $(VALGRIND))
+ $(error "No valgrind in $(PATH), cannot run memory test")
+endif
+ifneq ($(shell id -u), 0)
+ $(error "The memory test should be run as root, as it reuqires full access to tracefs")
+endif
+ CK_FORK=no $(VALGRIND) \
+ --show-leak-kinds=all --leak-resolution=high \
+ --leak-check=full --show-possibly-lost=yes \
+ --track-origins=yes -s \
+ $(bdir)/trace-utest
+
clean:
$(RM) $(TARGETS) $(bdir)/*.o $(bdir)/.*.d
--
2.40.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] trace-cmd: Add Makefie target for memory test
2023-06-07 12:02 [PATCH] trace-cmd: Add Makefie target for memory test Tzvetomir Stoyanov (VMware)
@ 2023-06-07 17:24 ` Steven Rostedt
0 siblings, 0 replies; 2+ messages in thread
From: Steven Rostedt @ 2023-06-07 17:24 UTC (permalink / raw)
To: Tzvetomir Stoyanov (VMware); +Cc: linux-trace-devel
On Wed, 7 Jun 2023 15:02:02 +0300
"Tzvetomir Stoyanov (VMware)" <tz.stoyanov@gmail.com> wrote:
> Having an automated test for memory problems is a useful functionality.
> Combined with the trace-cmd unit test, it can be used to detect any
> memory issues in the application. New Makefile target is added, which
> runs the trace-cmd unit test on valgrind, to check for memory allocation
> errors.
>
> Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com>
Thanks Tzvetomir!
I'll queue this up, along with a few patches to fix up some of the reports.
Basically caused by the test, not what it was testing.
-- Steve
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2023-06-07 17:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-06-07 12:02 [PATCH] trace-cmd: Add Makefie target for memory test Tzvetomir Stoyanov (VMware)
2023-06-07 17:24 ` Steven Rostedt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).