This test case just exercises the PCI enumeration and there is no real way to test success/failure other than running it and the kernel not crashing. Moved to ztest. Retag so it is actually ran on QEMU/x86 and galileo once we deploy in the HW pool. Note this means that we need to force CONFIG_PCI on Qemu/x86, which can run this testcase. Change-Id: I85b64800f7d989357927b4a25777041047293b34 Signed-off-by: Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
10 lines
236 B
Makefile
10 lines
236 B
Makefile
BOARD ?= qemu_x86
|
|
# In QEMU x86, we have to force CONFIG_PCI being defined, as the defconfig does not have it.
|
|
ifeq ($(BOARD), qemu_x86)
|
|
CONF_FILE = prj_$(BOARD).conf
|
|
else
|
|
CONF_FILE = prj.conf
|
|
endif
|
|
|
|
include ${ZEPHYR_BASE}/Makefile.inc
|