aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2017-01-20 11:55:19 +0100
committerDmitry Vyukov <dvyukov@google.com>2017-01-20 14:56:20 +0100
commit3db67897de73dd9dcccddc9084bd5e18e1e7dde2 (patch)
treea440f52f7ccc5c1a1e299bfb406bbed340d73398 /Makefile
parentf8b6a5831cda2f5dac81e7a3fdfcff27733adb4f (diff)
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.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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