mirror of https://github.com/ARMmbed/mbed-os.git
Removing references to yotta and minar within utest
parent
cd438a321a
commit
3ad5e13070
|
@ -15,8 +15,6 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// define this to get rid of the minar dependency.
|
|
||||||
#define YOTTA_CFG_UTEST_USE_CUSTOM_SCHEDULER 1
|
|
||||||
|
|
||||||
#include "mbed.h"
|
#include "mbed.h"
|
||||||
#include "greentea-client/test_env.h"
|
#include "greentea-client/test_env.h"
|
||||||
|
|
|
@ -15,8 +15,6 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// define this to get rid of the minar dependency.
|
|
||||||
#define YOTTA_CFG_UTEST_USE_CUSTOM_SCHEDULER 1
|
|
||||||
|
|
||||||
#include "mbed.h"
|
#include "mbed.h"
|
||||||
#include "greentea-client/test_env.h"
|
#include "greentea-client/test_env.h"
|
||||||
|
|
|
@ -18,50 +18,9 @@
|
||||||
|
|
||||||
#include "utest/utest_shim.h"
|
#include "utest/utest_shim.h"
|
||||||
#include "utest/utest_stack_trace.h"
|
#include "utest/utest_stack_trace.h"
|
||||||
|
|
||||||
#if UTEST_SHIM_SCHEDULER_USE_MINAR
|
|
||||||
#include "minar/minar.h"
|
|
||||||
|
|
||||||
static int32_t utest_minar_init()
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
static void *utest_minar_post(const utest_v1_harness_callback_t callback, const uint32_t delay_ms)
|
|
||||||
{
|
|
||||||
void *handle = minar::Scheduler::postCallback(callback).delay(minar::milliseconds(delay_ms)).getHandle();
|
|
||||||
return handle;
|
|
||||||
}
|
|
||||||
static int32_t utest_minar_cancel(void *handle)
|
|
||||||
{
|
|
||||||
int32_t ret = minar::Scheduler::cancelCallback(handle);
|
|
||||||
return ret;
|
|
||||||
}
|
|
||||||
static int32_t utest_minar_run()
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
extern "C" {
|
|
||||||
static const utest_v1_scheduler_t utest_v1_scheduler =
|
|
||||||
{
|
|
||||||
utest_minar_init,
|
|
||||||
utest_minar_post,
|
|
||||||
utest_minar_cancel,
|
|
||||||
utest_minar_run
|
|
||||||
};
|
|
||||||
utest_v1_scheduler_t utest_v1_get_scheduler()
|
|
||||||
{
|
|
||||||
return utest_v1_scheduler;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#elif UTEST_SHIM_SCHEDULER_USE_US_TICKER
|
|
||||||
#ifdef YOTTA_MBED_HAL_VERSION_STRING
|
|
||||||
# include "mbed-hal/us_ticker_api.h"
|
|
||||||
#else
|
|
||||||
#include "platform/SingletonPtr.h"
|
#include "platform/SingletonPtr.h"
|
||||||
#include "Timeout.h"
|
#include "Timeout.h"
|
||||||
using mbed::Timeout;
|
using mbed::Timeout;
|
||||||
#endif
|
|
||||||
|
|
||||||
// only one callback is active at any given time
|
// only one callback is active at any given time
|
||||||
static volatile utest_v1_harness_callback_t minimal_callback;
|
static volatile utest_v1_harness_callback_t minimal_callback;
|
||||||
|
@ -79,7 +38,7 @@ static void ticker_handler()
|
||||||
static int32_t utest_us_ticker_init()
|
static int32_t utest_us_ticker_init()
|
||||||
{
|
{
|
||||||
UTEST_LOG_FUNCTION();
|
UTEST_LOG_FUNCTION();
|
||||||
// initialize the Timeout object to makes sure it is not initialized in
|
// initialize the Timeout object to makes sure it is not initialized in
|
||||||
// interrupt context.
|
// interrupt context.
|
||||||
utest_timeout_object.get();
|
utest_timeout_object.get();
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -88,13 +47,13 @@ static void *utest_us_ticker_post(const utest_v1_harness_callback_t callback, ti
|
||||||
{
|
{
|
||||||
UTEST_LOG_FUNCTION();
|
UTEST_LOG_FUNCTION();
|
||||||
timestamp_t delay_us = delay_ms *1000;
|
timestamp_t delay_us = delay_ms *1000;
|
||||||
|
|
||||||
if (delay_ms) {
|
if (delay_ms) {
|
||||||
ticker_callback = callback;
|
ticker_callback = callback;
|
||||||
// fire the interrupt in 1000us * delay_ms
|
// fire the interrupt in 1000us * delay_ms
|
||||||
utest_timeout_object->attach_us(ticker_handler, delay_us);
|
utest_timeout_object->attach_us(ticker_handler, delay_us);
|
||||||
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
minimal_callback = callback;
|
minimal_callback = callback;
|
||||||
}
|
}
|
||||||
|
@ -142,10 +101,3 @@ utest_v1_scheduler_t utest_v1_get_scheduler()
|
||||||
return utest_v1_scheduler;
|
return utest_v1_scheduler;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef YOTTA_CORE_UTIL_VERSION_STRING
|
|
||||||
// their functionality is implemented using the CriticalSectionLock class
|
|
||||||
void utest_v1_enter_critical_section(void) {}
|
|
||||||
void utest_v1_leave_critical_section(void) {}
|
|
||||||
#endif
|
|
||||||
|
|
|
@ -41,11 +41,6 @@ namespace v1 {
|
||||||
* The harness executes the test specification in an asynchronous fashion, therefore
|
* The harness executes the test specification in an asynchronous fashion, therefore
|
||||||
* `run()` returns immediately.
|
* `run()` returns immediately.
|
||||||
*
|
*
|
||||||
* By default, this harness uses the MINAR scheduler for asynchronous callbacks.
|
|
||||||
* If you wamt to provide your own custom scheduler, set `config.utest.use_custom_scheduler` to `true`
|
|
||||||
* inside your yotta config and set a custom scheduler implementation using the `set_scheduler()` function.
|
|
||||||
* You must set the scheduler before running a specification.
|
|
||||||
*
|
|
||||||
* @note In case of an test abort, the harness will busy-wait and never finish.
|
* @note In case of an test abort, the harness will busy-wait and never finish.
|
||||||
*/
|
*/
|
||||||
class Harness
|
class Harness
|
||||||
|
|
|
@ -27,50 +27,22 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include "utest/utest_scheduler.h"
|
#include "utest/utest_scheduler.h"
|
||||||
|
|
||||||
#ifdef YOTTA_CFG
|
#ifndef __deprecated_message
|
||||||
# include "compiler-polyfill/attributes.h"
|
# if defined(__CC_ARM)
|
||||||
#else
|
# define __deprecated_message(msg) __attribute__((deprecated))
|
||||||
# ifndef __deprecated_message
|
# elif defined (__ICCARM__)
|
||||||
# if defined(__CC_ARM)
|
# define __deprecated_message(msg)
|
||||||
# define __deprecated_message(msg) __attribute__((deprecated))
|
|
||||||
# elif defined (__ICCARM__)
|
|
||||||
# define __deprecated_message(msg)
|
|
||||||
# else
|
|
||||||
# define __deprecated_message(msg) __attribute__((deprecated(msg)))
|
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifdef YOTTA_CORE_UTIL_VERSION_STRING
|
|
||||||
# include "core-util/CriticalSectionLock.h"
|
|
||||||
# define UTEST_ENTER_CRITICAL_SECTION mbed::util::CriticalSectionLock lock
|
|
||||||
# define UTEST_LEAVE_CRITICAL_SECTION
|
|
||||||
#else
|
|
||||||
# ifndef UTEST_ENTER_CRITICAL_SECTION
|
|
||||||
# define UTEST_ENTER_CRITICAL_SECTION utest_v1_enter_critical_section()
|
|
||||||
# endif
|
|
||||||
# ifndef UTEST_LEAVE_CRITICAL_SECTION
|
|
||||||
# define UTEST_LEAVE_CRITICAL_SECTION utest_v1_leave_critical_section()
|
|
||||||
# endif
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#ifndef YOTTA_CFG_UTEST_USE_CUSTOM_SCHEDULER
|
|
||||||
# ifdef YOTTA_MINAR_VERSION_STRING
|
|
||||||
# define UTEST_MINAR_AVAILABLE 1
|
|
||||||
# else
|
# else
|
||||||
# define UTEST_MINAR_AVAILABLE 0
|
# define __deprecated_message(msg) __attribute__((deprecated(msg)))
|
||||||
# endif
|
# endif
|
||||||
# ifndef UTEST_SHIM_SCHEDULER_USE_MINAR
|
#endif
|
||||||
# define UTEST_SHIM_SCHEDULER_USE_MINAR UTEST_MINAR_AVAILABLE
|
|
||||||
# endif
|
#ifndef UTEST_ENTER_CRITICAL_SECTION
|
||||||
# ifndef UTEST_SHIM_SCHEDULER_USE_US_TICKER
|
# define UTEST_ENTER_CRITICAL_SECTION utest_v1_enter_critical_section()
|
||||||
# ifdef __MBED__
|
#endif
|
||||||
# define UTEST_SHIM_SCHEDULER_USE_US_TICKER 1
|
#ifndef UTEST_LEAVE_CRITICAL_SECTION
|
||||||
# else
|
# define UTEST_LEAVE_CRITICAL_SECTION utest_v1_leave_critical_section()
|
||||||
# define UTEST_SHIM_SCHEDULER_USE_US_TICKER 0
|
#endif
|
||||||
# endif
|
|
||||||
# endif
|
|
||||||
#endif // YOTTA_CFG_UTEST_USE_CUSTOM_SCHEDULER
|
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
extern "C" {
|
extern "C" {
|
||||||
|
|
Loading…
Reference in New Issue