Skip to content

Commit 9ce839e

Browse files
committed
Adding missing [NOT_SUPPORTED] macros to tests
1 parent 07f9cfe commit 9ce839e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

TESTS/API/SPI/SPI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626
// check if SPI is supported on this device
2727
#if !DEVICE_SPI
28-
#error SPI is not supported on this platform, add 'DEVICE_SPI' definition to your platform.
28+
#error [NOT_SUPPORTED] SPI is not supported on this platform, add 'DEVICE_SPI' definition to your platform.
2929
#endif
3030

3131
using namespace utest::v1;

TESTS/assumptions/PwmOut/PwmOut.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
//#error [NOT_SUPPORTED] PWM tests are still being written and validated, not for public use yet.
1818

1919
#if !DEVICE_PWMOUT
20-
#error PWMOUT not supported on this platform, add 'DEVICE_PWMOUT' definition to your platform.
20+
#error [NOT_SUPPORTED] PWMOUT not supported on this platform, add 'DEVICE_PWMOUT' definition to your platform.
2121
#endif
2222

2323
#include "mbed.h"

TESTS/assumptions/SPI/SPI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// check if SPI is supported on this device
22
#if !DEVICE_SPI
3-
#error SPI is not supported on this platform, add 'DEVICE_SPI' definition to your platform.
3+
#error [NOT_SUPPORTED] SPI is not supported on this platform, add 'DEVICE_SPI' definition to your platform.
44
#endif
55

66
#include "mbed.h"

0 commit comments

Comments
 (0)