blob: dcc798861ece704fffb993e33117f661ac3d001a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
/* Copyright 2022 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#include "common.h"
#include "panic.h"
#include "system.h"
#include "task.h"
#include "test_util.h"
#include <stdlib.h>
test_static int test_abort(void)
{
ccprintf("Calling abort\n");
cflush();
abort();
/* Should never reach this. */
return EC_ERROR_UNKNOWN;
}
test_static int test_panic_data(void)
{
const uint32_t expected_reason = PANIC_SW_EXIT;
/* Note: The task_id can be found with the "taskinfo" command. */
const uint32_t expected_task_id = 5;
const uint8_t expected_exception = 0;
uint32_t reason = 0;
uint32_t info = 0;
uint8_t exception = UINT8_MAX;
panic_get_reason(&reason, &info, &exception);
TEST_EQ(reason, expected_reason, "%08x");
TEST_EQ(info, expected_task_id, "%d");
TEST_EQ(exception, expected_exception, "%d");
return EC_SUCCESS;
}
test_static void run_test_step1(void)
{
test_set_next_step(TEST_STATE_STEP_2);
RUN_TEST(test_abort);
}
test_static void run_test_step2(void)
{
RUN_TEST(test_panic_data);
if (test_get_error_count())
test_reboot_to_next_step(TEST_STATE_FAILED);
else
test_reboot_to_next_step(TEST_STATE_PASSED);
}
void test_run_step(uint32_t state)
{
if (state & TEST_STATE_MASK(TEST_STATE_STEP_1)) {
run_test_step1();
} else if (state & TEST_STATE_MASK(TEST_STATE_STEP_2)) {
run_test_step2();
}
}
int task_test(void *unused)
{
if (IS_ENABLED(SECTION_IS_RW))
test_run_multistep();
return EC_SUCCESS;
}
void run_test(int argc, const char **argv)
{
test_reset();
msleep(30); /* Wait for TASK_ID_TEST to initialize */
task_wake(TASK_ID_TEST);
}
|