zephyr/tests/subsys/display/cfb/basic/src/testdata.h
TOKITA Hiroshi 1bcebbafac tests: subsys: display: cfb: Add CFB tests
Add test cases for testing basic CFB functions.

These tests cannot run in CI because the CI environment has no display.
Mark these tests as `build_only`.

Signed-off-by: TOKITA Hiroshi <tokita.hiroshi@gmail.com>
2024-06-28 07:21:47 -04:00

24 lines
720 B
C

/*
* Copyright (c) 2024 TOKITA Hiroshi
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef TESTS_SUBSYS_DISPLAY_CFB_DRAW_TEXT_AND_PRINT_SRC_TESTDATA_H__
#define TESTS_SUBSYS_DISPLAY_CFB_DRAW_TEXT_AND_PRINT_SRC_TESTDATA_H__
#include <stdint.h>
extern uint32_t diagonal3224[];
extern uint32_t kerning_3_12rectspace1016[];
extern uint32_t kerning_3_2rectspace1016[];
extern uint32_t kerning_3_rightclip_1_2rectspace1016[];
extern uint32_t outside_bottom_left[];
extern uint32_t outside_bottom_right[];
extern uint32_t outside_top_left[];
extern uint32_t outside_top_right[];
extern uint32_t rectspace1016[];
extern uint32_t rectspace1123[];
#endif /* TESTS_SUBSYS_DISPLAY_CFB_DRAW_TEXT_AND_PRINT_SRC_TESTDATA_H__ */