mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #14767 from ghseb/early-test-skip
connectivity tests: early skip fixpull/14797/head
commit
2dcd6c026d
|
@ -15,17 +15,6 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#include "utest.h"
|
||||
#include "unity.h"
|
||||
#include "greentea-client/test_env.h"
|
||||
|
||||
#include "Semaphore.h"
|
||||
|
||||
#include "mbed_trace.h"
|
||||
#define TRACE_GROUP "RTST"
|
||||
|
||||
#include "LoRaRadio.h"
|
||||
|
||||
#if COMPONENT_SX1272
|
||||
#include "SX1272_LoRaRadio.h"
|
||||
#elif COMPONENT_SX1276
|
||||
|
@ -38,6 +27,17 @@
|
|||
#error [NOT_SUPPORTED] Lora radio is not configured
|
||||
#endif
|
||||
|
||||
#include "utest.h"
|
||||
#include "unity.h"
|
||||
#include "greentea-client/test_env.h"
|
||||
|
||||
#include "Semaphore.h"
|
||||
|
||||
#include "mbed_trace.h"
|
||||
#define TRACE_GROUP "RTST"
|
||||
|
||||
#include "LoRaRadio.h"
|
||||
|
||||
using namespace utest::v1;
|
||||
using namespace mbed;
|
||||
|
||||
|
|
|
@ -15,6 +15,10 @@
|
|||
* limitations under the License.
|
||||
*/
|
||||
|
||||
#if !MBED_CONF_NFCEEPROM
|
||||
#error [NOT_SUPPORTED] NFC EEPROM not supported for this target
|
||||
#else
|
||||
|
||||
#include "mbed.h"
|
||||
#include "greentea-client/test_env.h"
|
||||
#include "unity.h"
|
||||
|
@ -23,10 +27,6 @@
|
|||
#include <events/mbed_events.h>
|
||||
#include "NFCEEPROMDriver.h"
|
||||
|
||||
#if !MBED_CONF_NFCEEPROM
|
||||
#error [NOT_SUPPORTED] NFC EEPROM not supported for this target
|
||||
#else
|
||||
|
||||
using namespace utest::v1;
|
||||
using namespace mbed::nfc;
|
||||
|
||||
|
|
Loading…
Reference in New Issue