aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-kernel/zephyr-kernel/zephyr-kernel-test.inc
blob: 6e96ae2cc8cb5d73a7be1d15794c3490ad346035 (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
ZEPHYRTESTS_remove = "test_static_idt test_fifo test_fp_sharing \
    test_sema test_stackprot test_obj_tracing test_stack \
    test_tickless test_timer"

# test_context will fail because QEMU for ARM does not emulate CortexM3 BASEPRI register
ZEPHYRTESTS_remove_arm += "test_context"

# test_critical never finishes in an unpatched QEMU either
ZEPHYRTESTS_remove_arm += "test_critical"

#Remove ARM specific tests
ZEPHYRTESTS_remove_x86 += "test_context test_arm_irq_vector_table"

#Remove tests not intended for Nios2
ZEPHYRTESTS_remove_nios2 += "test_context test_mem_safe"

# List of all available tests
ZEPHYRTESTS = " \
    test_context \
    test_critical \
    test_early_sleep \
    test_errno \
    test_events \
    test_fifo \
    test_fifo_priv \
    test_fp_sharing \
    test_libs \
    test_lifo \
    test_mail \
    test_mail_priv \
    test_map \
    test_map_priv \
    test_mem_safe \
    test_mutex \
    test_nano_work \
    test_obj_tracing \
    test_pend \
    test_pipe \
    test_pipe_priv \
    test_pool \
    test_sema \
    test_sema_priv \
    test_sleep \
    test_stack \
    test_stackprot \
    test_static_idt \
    test_task \
    test_task_priv \
    test_tickless \
    test_timer \
    "