mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #10975 from fkjagodzinski/fix-fpga_ci_test_shield-tests
Restrict FPGA tests to Arduino form factorpull/10989/head
commit
1c91d03d9b
|
|
@ -19,6 +19,8 @@
|
|||
#error [NOT_SUPPORTED] Analog in not supported for this target
|
||||
#elif !COMPONENT_FPGA_CI_TEST_SHIELD
|
||||
#error [NOT_SUPPORTED] FPGA CI Test Shield is needed to run this test
|
||||
#elif !defined(TARGET_FF_ARDUINO) && !defined(MBED_CONF_TARGET_DEFAULT_FORM_FACTOR)
|
||||
#error [NOT_SUPPORTED] Test not supported for this form factor
|
||||
#else
|
||||
|
||||
#include "utest/utest.h"
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@
|
|||
#error [NOT_SUPPORTED] Analog out not supported for this target
|
||||
#elif !COMPONENT_FPGA_CI_TEST_SHIELD
|
||||
#error [NOT_SUPPORTED] FPGA CI Test Shield is needed to run this test
|
||||
#elif !defined(TARGET_FF_ARDUINO) && !defined(MBED_CONF_TARGET_DEFAULT_FORM_FACTOR)
|
||||
#error [NOT_SUPPORTED] Test not supported for this form factor
|
||||
#else
|
||||
|
||||
#include "utest/utest.h"
|
||||
|
|
|
|||
|
|
@ -17,6 +17,8 @@
|
|||
|
||||
#if !COMPONENT_FPGA_CI_TEST_SHIELD
|
||||
#error [NOT_SUPPORTED] FPGA CI Test Shield is needed to run this test
|
||||
#elif !defined(TARGET_FF_ARDUINO) && !defined(MBED_CONF_TARGET_DEFAULT_FORM_FACTOR)
|
||||
#error [NOT_SUPPORTED] Test not supported for this form factor
|
||||
#else
|
||||
|
||||
#include "utest/utest.h"
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@
|
|||
#error [NOT_SUPPORTED] test not supported
|
||||
#elif !COMPONENT_FPGA_CI_TEST_SHIELD
|
||||
#error [NOT_SUPPORTED] FPGA CI Test Shield is needed to run this test
|
||||
#elif !defined(TARGET_FF_ARDUINO) && !defined(MBED_CONF_TARGET_DEFAULT_FORM_FACTOR)
|
||||
#error [NOT_SUPPORTED] Test not supported for this form factor
|
||||
#else
|
||||
|
||||
#include "utest/utest.h"
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@
|
|||
#error [NOT_SUPPORTED] I2C not supported for this target
|
||||
#elif !COMPONENT_FPGA_CI_TEST_SHIELD
|
||||
#error [NOT_SUPPORTED] FPGA CI Test Shield is needed to run this test
|
||||
#elif !defined(TARGET_FF_ARDUINO) && !defined(MBED_CONF_TARGET_DEFAULT_FORM_FACTOR)
|
||||
#error [NOT_SUPPORTED] Test not supported for this form factor
|
||||
#else
|
||||
|
||||
#include "utest/utest.h"
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@
|
|||
#error [NOT_SUPPORTED] PWM not supported for this target
|
||||
#elif !COMPONENT_FPGA_CI_TEST_SHIELD
|
||||
#error [NOT_SUPPORTED] FPGA CI Test Shield is needed to run this test
|
||||
#elif !defined(TARGET_FF_ARDUINO) && !defined(MBED_CONF_TARGET_DEFAULT_FORM_FACTOR)
|
||||
#error [NOT_SUPPORTED] Test not supported for this form factor
|
||||
#else
|
||||
|
||||
#include "utest/utest.h"
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@
|
|||
#error [NOT_SUPPORTED] SPI not supported for this target
|
||||
#elif !COMPONENT_FPGA_CI_TEST_SHIELD
|
||||
#error [NOT_SUPPORTED] FPGA CI Test Shield is needed to run this test
|
||||
#elif !defined(TARGET_FF_ARDUINO) && !defined(MBED_CONF_TARGET_DEFAULT_FORM_FACTOR)
|
||||
#error [NOT_SUPPORTED] Test not supported for this form factor
|
||||
#else
|
||||
|
||||
#include "utest/utest.h"
|
||||
|
|
|
|||
|
|
@ -19,6 +19,8 @@
|
|||
#error [NOT_SUPPORTED] SERIAL not supported for this target
|
||||
#elif !COMPONENT_FPGA_CI_TEST_SHIELD
|
||||
#error [NOT_SUPPORTED] FPGA CI Test Shield is needed to run this test
|
||||
#elif !defined(TARGET_FF_ARDUINO) && !defined(MBED_CONF_TARGET_DEFAULT_FORM_FACTOR)
|
||||
#error [NOT_SUPPORTED] Test not supported for this form factor
|
||||
#else
|
||||
|
||||
#include "utest/utest.h"
|
||||
|
|
@ -338,4 +340,4 @@ int main()
|
|||
Harness::run(specification);
|
||||
}
|
||||
|
||||
#endif /* !DEVICE_SERIAL */
|
||||
#endif /* !DEVICE_SERIAL */
|
||||
|
|
|
|||
Loading…
Reference in New Issue