mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-30 18:41:11 +00:00
CTS task wakes up A and C then goes to sleep: CTS -> A, C -> A -> B -> C Since C has a higher priority, C should run first. This should result in C running one more time than A (or B). BUG=chromium:663873 BRANCH=none TEST=cts.py -m task Change-Id: I89c733ba3aab09b293edf8583d6ed73791531e59 Signed-off-by: Daisuke Nojiri <dnojiri@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/409535 Reviewed-by: Randall Spangler <rspangler@chromium.org>
19 lines
712 B
Plaintext
19 lines
712 B
Plaintext
/* Copyright 2016 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
/*
|
|
* Test task switching. Task A wakes up B and goes to sleep. Task B wakes
|
|
* up C then goes to sleep. Task C wakes up A then goes to sleep. This is
|
|
* repeated TEST_COUNT times. It's expected all tasks to run exactly
|
|
* TEST_COUNT times. Tick task runs to inject some irregularity.
|
|
*/
|
|
CTS_TEST(test_task_switch)
|
|
|
|
/*
|
|
* Test task priority. CTS task wakes up A and C then goes to sleep. Since C
|
|
* has a higher priority, C should run first. This should result in C running
|
|
* one more time than A (or B).
|
|
*/
|
|
CTS_TEST(test_task_priority) |