1# Copyright (c) 2022 Nordic Semiconductor
2#
3# SPDX-License-Identifier: Apache-2.0
4
5# Current the use of X86 is for consistency with old testsuite/ztest which
6# defined CONFIG_X86 manually. To consider, is ARCH_POSIX a better choice?
7config X86
8	bool
9	default y
10	help
11	  The unit_testing architecture identifies itself as X86 for basic
12	  ztest and kernel support.
13
14if CONSOLE
15
16config POSIX_ARCH_CONSOLE
17	bool
18	default y
19	select CONSOLE_HAS_DRIVER
20	help
21	  The unit testing architecture is expected to always have access to a
22	  standard terminal for printing.
23
24endif # CONSOLE
25