Import Mbed OS hard-float snapshot
This commit is contained in:
109
TESTS/mbed_hal/sleep_manager_racecondition/main.cpp
Normal file
109
TESTS/mbed_hal/sleep_manager_racecondition/main.cpp
Normal file
@@ -0,0 +1,109 @@
|
||||
/* mbed Microcontroller Library
|
||||
* Copyright (c) 2017 ARM Limited
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
#include "utest/utest.h"
|
||||
#include "unity/unity.h"
|
||||
#include "greentea-client/test_env.h"
|
||||
#include "mbed.h"
|
||||
#include "sleep_manager_api_racecondition_tests.h"
|
||||
|
||||
#if !DEVICE_SLEEP || !DEVICE_USTICKER
|
||||
#error [NOT_SUPPORTED] test not supported
|
||||
#else
|
||||
|
||||
using namespace utest::v1;
|
||||
|
||||
#define TEST_STACK_SIZE 256
|
||||
#if defined(MBED_CONF_RTOS_PRESENT)
|
||||
void sleep_manager_locking_thread_test()
|
||||
{
|
||||
for (uint32_t i = 0; i < 100; i++) {
|
||||
sleep_manager_lock_deep_sleep();
|
||||
ThisThread::sleep_for(25);
|
||||
sleep_manager_unlock_deep_sleep();
|
||||
}
|
||||
}
|
||||
|
||||
void sleep_manager_multithread_test()
|
||||
{
|
||||
{
|
||||
Callback<void()> cb(sleep_manager_locking_thread_test);
|
||||
Thread t1(osPriorityNormal, TEST_STACK_SIZE);
|
||||
Thread t2(osPriorityNormal, TEST_STACK_SIZE);
|
||||
|
||||
t1.start(callback(cb));
|
||||
ThisThread::sleep_for(25);
|
||||
t2.start(callback(cb));
|
||||
|
||||
// Wait for the threads to finish
|
||||
t1.join();
|
||||
t2.join();
|
||||
}
|
||||
|
||||
bool deep_sleep_allowed = sleep_manager_can_deep_sleep_test_check();
|
||||
TEST_ASSERT_TRUE_MESSAGE(deep_sleep_allowed, "Deep sleep should be allowed");
|
||||
}
|
||||
#endif
|
||||
|
||||
void sleep_manager_locking_irq_test()
|
||||
{
|
||||
sleep_manager_lock_deep_sleep();
|
||||
sleep_manager_unlock_deep_sleep();
|
||||
}
|
||||
|
||||
void sleep_manager_irq_test()
|
||||
{
|
||||
{
|
||||
Ticker ticker1;
|
||||
Timer timer;
|
||||
|
||||
ticker1.attach_us(&sleep_manager_locking_irq_test, 1000);
|
||||
|
||||
// run this for 10 seconds
|
||||
timer.start();
|
||||
int start = timer.read();
|
||||
int end = start + 10;
|
||||
while (timer.read() < end) {
|
||||
sleep_manager_locking_irq_test();
|
||||
}
|
||||
timer.stop();
|
||||
}
|
||||
|
||||
bool deep_sleep_allowed = sleep_manager_can_deep_sleep_test_check();
|
||||
TEST_ASSERT_TRUE_MESSAGE(deep_sleep_allowed, "Deep sleep should be allowed");
|
||||
}
|
||||
|
||||
utest::v1::status_t greentea_test_setup(const size_t number_of_cases)
|
||||
{
|
||||
GREENTEA_SETUP(30, "default_auto");
|
||||
return greentea_test_setup_handler(number_of_cases);
|
||||
}
|
||||
|
||||
Case cases[] = {
|
||||
#if defined(MBED_CONF_RTOS_PRESENT)
|
||||
Case("deep sleep lock/unlock is thread safe", sleep_manager_multithread_test),
|
||||
#endif
|
||||
Case("deep sleep lock/unlock is IRQ safe", sleep_manager_irq_test),
|
||||
};
|
||||
|
||||
Specification specification(greentea_test_setup, cases, greentea_test_teardown_handler);
|
||||
|
||||
int main()
|
||||
{
|
||||
Harness::run(specification);
|
||||
}
|
||||
|
||||
#endif // !DEVICE_SLEEP || !DEVICE_USTICKER
|
||||
@@ -0,0 +1,44 @@
|
||||
/* mbed Microcontroller Library
|
||||
* Copyright (c) 2018 ARM Limited
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @addtogroup hal_sleep_manager_tests
|
||||
* @{
|
||||
*/
|
||||
|
||||
#ifndef MBED_HAL_SLEEP_MANAGER_API_RACECONDITION_TESTS_H
|
||||
#define MBED_HAL_SLEEP_MANAGER_API_RACECONDITION_TESTS_H
|
||||
|
||||
/** Test lock/unlock is thread safe
|
||||
*
|
||||
* Given a device with sleep mode support
|
||||
* When multiple threads are using the sleep manager API
|
||||
* Then lock/unlock calls are thread safe
|
||||
*/
|
||||
void sleep_manager_multithread_test();
|
||||
|
||||
/** Test lock/unlock is IRQ safe
|
||||
*
|
||||
* Given a device with sleep mode support
|
||||
* When the sleep manager API is used from IRQ and the main thread concurrently
|
||||
* Then lock/unlock calls are IRQ safe
|
||||
*/
|
||||
void sleep_manager_irq_test();
|
||||
|
||||
#endif
|
||||
|
||||
/** @}*/
|
||||
Reference in New Issue
Block a user