From 573e6d4095a359ab3a8519b382d407d53059635f Mon Sep 17 00:00:00 2001 From: Avril Date: Thu, 3 Dec 2020 17:17:36 +0000 Subject: [PATCH] added -Werror to test --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c33e773..037f75b 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ test: test/test test/test: test/test.cpp - $(CXX) -I. --std=c++20 -Wall -pedantic $< -o $@ + $(CXX) -I. --std=c++20 -Wall -Werror -pedantic $< -o $@ if strings $@ | grep Hello; then exit 1; fi ./$@ strings $@ | grep bOFFE >> /dev/null