From 18ebe7a0aac86bf90aa08e0fd8d48d6929651383 Mon Sep 17 00:00:00 2001 From: maniacbug Date: Mon, 1 Aug 2011 09:45:55 -0700 Subject: [PATCH] Treat warning as errors in tests --- tests/pingpair_test/Jamfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pingpair_test/Jamfile b/tests/pingpair_test/Jamfile index 901f8da..98ec12f 100644 --- a/tests/pingpair_test/Jamfile +++ b/tests/pingpair_test/Jamfile @@ -40,7 +40,7 @@ AVRDUDE = $(AVR_TOOLS_PATH)/avrdude ; DEFINES = F_CPU=$(F_CPU)L ARDUINO=$(ARDUINO_VERSION) VERSION_H ; CTUNING = -ffunction-sections -fdata-sections ; CXXTUNING = -fno-exceptions -fno-strict-aliasing ; -CFLAGS = -Os -Wall -Wextra -mmcu=$(MCU) $(CTUNING) ; +CFLAGS = -Os -Werror -Wall -Wextra -mmcu=$(MCU) $(CTUNING) ; CXXFLAGS = $(CFLAGS) $(CXXTUNING) ; LDFLAGS = -Os -lm -Wl,--gc-sections -mmcu=atmega328p ;