From 4cce485b6f49bd33a3c40861baa41315099f9a77 Mon Sep 17 00:00:00 2001 From: Bas Stottelaar Date: Thu, 22 Oct 2020 11:35:36 +0200 Subject: [PATCH] tests/*: realign ENABLE_DEBUG --- tests/bench_timers/spin_random.c | 2 +- tests/candev/main.c | 2 +- tests/nanocoap_cli/nanocli_server.c | 2 +- tests/pkg_microcoap/microcoap_sock.c | 2 +- tests/pkg_yxml/main.c | 2 +- tests/unittests/tests-analog_util/tests-analog_util.c | 2 +- tests/unittests/tests-bluetil/tests-bluetil.c | 2 +- tests/unittests/tests-div/tests-div.c | 2 +- tests/unittests/tests-frac/tests-frac.c | 2 +- tests/unittests/tests-matstat/tests-matstat.c | 2 +- tests/unittests/tests-phydat/tests-phydat.c | 2 +- tests/unittests/tests-rtt_rtc/mock_rtt.c | 2 +- tests/usbus/main.c | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/tests/bench_timers/spin_random.c b/tests/bench_timers/spin_random.c index a49884cc41..9470004592 100644 --- a/tests/bench_timers/spin_random.c +++ b/tests/bench_timers/spin_random.c @@ -25,7 +25,7 @@ #include "spin_random.h" #include "random.h" -#define ENABLE_DEBUG (0) +#define ENABLE_DEBUG 0 #include "debug.h" /* Default is whatever, just some small delay if the user forgets to initialize */ diff --git a/tests/candev/main.c b/tests/candev/main.c index c5bce70a0f..1a795b5962 100644 --- a/tests/candev/main.c +++ b/tests/candev/main.c @@ -19,7 +19,7 @@ * @} */ -#define ENABLE_DEBUG (0) +#define ENABLE_DEBUG 0 #include #include diff --git a/tests/nanocoap_cli/nanocli_server.c b/tests/nanocoap_cli/nanocli_server.c index 3b33264093..58a79c95e4 100644 --- a/tests/nanocoap_cli/nanocli_server.c +++ b/tests/nanocoap_cli/nanocli_server.c @@ -24,7 +24,7 @@ #include "net/nanocoap_sock.h" #include "net/sock/udp.h" -#define ENABLE_DEBUG (0) +#define ENABLE_DEBUG 0 #include "debug.h" /* diff --git a/tests/pkg_microcoap/microcoap_sock.c b/tests/pkg_microcoap/microcoap_sock.c index d3abdb61e1..85d221446b 100644 --- a/tests/pkg_microcoap/microcoap_sock.c +++ b/tests/pkg_microcoap/microcoap_sock.c @@ -9,7 +9,7 @@ #include "net/af.h" #include "net/sock/udp.h" -#define ENABLE_DEBUG (0) +#define ENABLE_DEBUG 0 #include "debug.h" #include "coap.h" diff --git a/tests/pkg_yxml/main.c b/tests/pkg_yxml/main.c index d8828060a4..44bb3a11f3 100644 --- a/tests/pkg_yxml/main.c +++ b/tests/pkg_yxml/main.c @@ -20,7 +20,7 @@ #include "embUnit.h" #include "yxml.h" -#define ENABLE_DEBUG (0) +#define ENABLE_DEBUG 0 #include "debug.h" static char _yxml_buf[1024]; diff --git a/tests/unittests/tests-analog_util/tests-analog_util.c b/tests/unittests/tests-analog_util/tests-analog_util.c index 3d9984e40d..a9b2f631f0 100644 --- a/tests/unittests/tests-analog_util/tests-analog_util.c +++ b/tests/unittests/tests-analog_util/tests-analog_util.c @@ -11,7 +11,7 @@ #include "analog_util.h" -#define ENABLE_DEBUG (0) +#define ENABLE_DEBUG 0 #include "debug.h" typedef struct { diff --git a/tests/unittests/tests-bluetil/tests-bluetil.c b/tests/unittests/tests-bluetil/tests-bluetil.c index 7e3c3dcc60..f90d8815a8 100644 --- a/tests/unittests/tests-bluetil/tests-bluetil.c +++ b/tests/unittests/tests-bluetil/tests-bluetil.c @@ -11,7 +11,7 @@ #include "net/bluetil/addr.h" -#define ENABLE_DEBUG (0) +#define ENABLE_DEBUG 0 #include "debug.h" const uint8_t addr[][6] = { diff --git a/tests/unittests/tests-div/tests-div.c b/tests/unittests/tests-div/tests-div.c index efac02cf00..699de4874a 100644 --- a/tests/unittests/tests-div/tests-div.c +++ b/tests/unittests/tests-div/tests-div.c @@ -12,7 +12,7 @@ #include "div.h" -#define ENABLE_DEBUG (0) +#define ENABLE_DEBUG 0 #include "debug.h" static const uint32_t u32_test_values[] = { diff --git a/tests/unittests/tests-frac/tests-frac.c b/tests/unittests/tests-frac/tests-frac.c index 525ffa10c7..cbd1d64eca 100644 --- a/tests/unittests/tests-frac/tests-frac.c +++ b/tests/unittests/tests-frac/tests-frac.c @@ -14,7 +14,7 @@ #include "frac.h" #include "div.h" -#define ENABLE_DEBUG (0) +#define ENABLE_DEBUG 0 #include "debug.h" static const uint32_t u32_fraction_operands[] = { diff --git a/tests/unittests/tests-matstat/tests-matstat.c b/tests/unittests/tests-matstat/tests-matstat.c index 1d8302149f..626ca8ebaa 100644 --- a/tests/unittests/tests-matstat/tests-matstat.c +++ b/tests/unittests/tests-matstat/tests-matstat.c @@ -12,7 +12,7 @@ #include "matstat.h" -#define ENABLE_DEBUG (0) +#define ENABLE_DEBUG 0 #include "debug.h" /* White box testing of matstat library */ diff --git a/tests/unittests/tests-phydat/tests-phydat.c b/tests/unittests/tests-phydat/tests-phydat.c index ef7de2410a..de5cce7408 100644 --- a/tests/unittests/tests-phydat/tests-phydat.c +++ b/tests/unittests/tests-phydat/tests-phydat.c @@ -27,7 +27,7 @@ #include "phydat.h" -#define ENABLE_DEBUG (0) +#define ENABLE_DEBUG 0 #include "debug.h" /* Default is smaller implementation */ diff --git a/tests/unittests/tests-rtt_rtc/mock_rtt.c b/tests/unittests/tests-rtt_rtc/mock_rtt.c index 2febb83b92..0ebe027f48 100644 --- a/tests/unittests/tests-rtt_rtc/mock_rtt.c +++ b/tests/unittests/tests-rtt_rtc/mock_rtt.c @@ -17,7 +17,7 @@ #include #include "periph/rtt.h" -#define ENABLE_DEBUG (0) +#define ENABLE_DEBUG 0 #include "debug.h" static uint32_t counter, alarm; diff --git a/tests/usbus/main.c b/tests/usbus/main.c index 3252ce36de..0c02d8066a 100644 --- a/tests/usbus/main.c +++ b/tests/usbus/main.c @@ -29,7 +29,7 @@ #include "usb/descriptor.h" #include "usb/usbus.h" -#define ENABLE_DEBUG (0) +#define ENABLE_DEBUG 0 #include "debug.h" /**