mirror of https://github.com/ARMmbed/mbed-os.git
Incorporate the review comments
parent
b9439920c0
commit
9a144308ec
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
include(mbed_greentea)
|
include(mbed_greentea)
|
||||||
|
|
||||||
if(DEFINED MBED_RTOS_SINGLE_THREAD OR MBED_GREENTEA_TEST_BAREMETAL)
|
if(${MBED_C_LIB} STREQUAL "small" OR MBED_GREENTEA_TEST_BAREMETAL)
|
||||||
set(TEST_SKIPPED "RTOS basic test cases require RTOS with multithread to run")
|
set(TEST_SKIPPED "RTOS basic test cases require RTOS with multithread to run")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
include(mbed_greentea)
|
include(mbed_greentea)
|
||||||
|
|
||||||
if(DEFINED MBED_RTOS_SINGLE_THREAD OR MBED_GREENTEA_TEST_BAREMETAL)
|
if(${MBED_C_LIB} STREQUAL "small" OR MBED_GREENTEA_TEST_BAREMETAL)
|
||||||
set(TEST_SKIPPED "Condition variable test cases require RTOS with multithread to run")
|
set(TEST_SKIPPED "Condition variable test cases require RTOS with multithread to run")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
include(mbed_greentea)
|
include(mbed_greentea)
|
||||||
|
|
||||||
if(DEFINED TARGET_CORTEX_A)
|
if("TARGET_CORTEX_A" IN_LIST MBED_TARGET_DEFINITIONS)
|
||||||
set(TEST_SKIPPED "test not supported for cortex-A.")
|
set(TEST_SKIPPED "test not supported for cortex-A.")
|
||||||
elseif(NOT "DEVICE_USTICKER=1" IN_LIST MBED_TARGET_DEFINITIONS)
|
elseif(NOT "DEVICE_USTICKER=1" IN_LIST MBED_TARGET_DEFINITIONS)
|
||||||
set(TEST_SKIPPED "UsTicker need to be enabled for this test.")
|
set(TEST_SKIPPED "UsTicker need to be enabled for this test.")
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
include(mbed_greentea)
|
include(mbed_greentea)
|
||||||
|
|
||||||
if(DEFINED MBED_RTOS_SINGLE_THREAD OR MBED_GREENTEA_TEST_BAREMETAL)
|
if(${MBED_C_LIB} STREQUAL "small" OR MBED_GREENTEA_TEST_BAREMETAL)
|
||||||
set(TEST_SKIPPED "mail test cases require RTOS with multithread to run")
|
set(TEST_SKIPPED "mail test cases require RTOS with multithread to run")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
include(mbed_greentea)
|
include(mbed_greentea)
|
||||||
|
|
||||||
if(DEFINED MBED_RTOS_SINGLE_THREAD OR MBED_GREENTEA_TEST_BAREMETAL)
|
if(${MBED_C_LIB} STREQUAL "small" OR MBED_GREENTEA_TEST_BAREMETAL)
|
||||||
set(TEST_SKIPPED "Mutex test cases require RTOS with multithread to run")
|
set(TEST_SKIPPED "Mutex test cases require RTOS with multithread to run")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
include(mbed_greentea)
|
include(mbed_greentea)
|
||||||
|
|
||||||
if(DEFINED MBED_RTOS_SINGLE_THREAD OR MBED_GREENTEA_TEST_BAREMETAL)
|
if(${MBED_C_LIB} STREQUAL "small" OR MBED_GREENTEA_TEST_BAREMETAL)
|
||||||
set(TEST_SKIPPED "Queue test cases require RTOS with multithread to run")
|
set(TEST_SKIPPED "Queue test cases require RTOS with multithread to run")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
|
|
||||||
include(mbed_greentea)
|
include(mbed_greentea)
|
||||||
|
|
||||||
if(DEFINED MBED_RTOS_SINGLE_THREAD OR MBED_GREENTEA_TEST_BAREMETAL)
|
if(${MBED_C_LIB} STREQUAL "small" OR MBED_GREENTEA_TEST_BAREMETAL)
|
||||||
set(TEST_SKIPPED "RTOS basic test cases require RTOS with multithread to run")
|
set(TEST_SKIPPED "RTOS basic test cases require RTOS with multithread to run")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue