From 3db67897de73dd9dcccddc9084bd5e18e1e7dde2 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 20 Jan 2017 11:55:19 +0100 Subject: tools/kcovtrace: add KCOV-based tracing utility kcovtrace is like strace but show kernel coverage collected with KCOV. It is very simplistic at this point and does not support multithreaded processes, etc. It can be used to understand, for example, exact location where kernel bails out with an error for a particular syscall. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 257493fb7..aab11335e 100644 --- a/Makefile +++ b/Makefile @@ -57,7 +57,7 @@ bin/syz-sysgen: sysgen/*.go sysparser/*.go format: go fmt ./... - clang-format --style=file -i executor/*.cc executor/*.h + clang-format --style=file -i executor/*.cc executor/*.h tools/kcovtrace/*.c presubmit: $(MAKE) generate -- cgit mrf-deployment