From e06082c4a334d2a8ce2cf0ad1a29e9c8ebd2d2ca Mon Sep 17 00:00:00 2001 From: Adam Rutkowski Date: Mon, 1 Apr 2019 12:38:11 -0400 Subject: [PATCH] Treat warnings as errors in tests/build/Makefile Signed-off-by: Adam Rutkowski --- tests/build/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/build/Makefile b/tests/build/Makefile index 0662b99..470cf66 100644 --- a/tests/build/Makefile +++ b/tests/build/Makefile @@ -17,7 +17,7 @@ INCDIR=include/ SRC=$(shell find ${SRCDIR} -name \*.c) OBJS = $(patsubst %.c, %.o, $(SRC)) -CFLAGS = -Wall -I${INCDIR} -I${SRCDIR}/ocf/env/ +CFLAGS = -Wall -Werror -I${INCDIR} -I${SRCDIR}/ocf/env/ all: sync $(MAKE) build