diff options
author | Daiki Ueno <dueno@redhat.com> | 2017-05-29 15:06:04 +0200 |
---|---|---|
committer | Daiki Ueno <ueno@gnu.org> | 2017-05-29 17:28:51 +0200 |
commit | 350bd148d3181c564eeb884dadc37aaed7d3fb9b (patch) | |
tree | b71d6ba3d7573772f3cbff32f290f0a5c3c07c87 /common | |
parent | 6738ade89f10516b589441282e95d5f13f6c1bdd (diff) |
build: Delay building test programs until "make check"
This is to disable clang-analyzer against test programs, which can
contain several false-positives.
Diffstat (limited to 'common')
-rw-r--r-- | common/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/Makefile.am b/common/Makefile.am index 54d3f4e..daa6fa2 100644 --- a/common/Makefile.am +++ b/common/Makefile.am @@ -54,7 +54,7 @@ common_LIBS = \ libp11-common.la \ $(NULL) -CHECK_PROGS += \ +check_PROGRAMS += \ test-tests \ test-compat \ test-hash \ |