[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1 5/6] tests: only run ipmi-bt-test if CONFIG_LINUX
From: |
Alex Bennée |
Subject: |
[PATCH v1 5/6] tests: only run ipmi-bt-test if CONFIG_LINUX |
Date: |
Mon, 4 Nov 2019 17:36:53 +0000 |
This test has been unstable on NetBSD for awhile. It seems the
mechanism used to listen to a random port is a Linux-ism (although a
received wisdom Linux-ism rather than a well documented one). As
working around would add more hard to test complexity to the test I've
gone for the easier option of making it CONFIG_LINUX only.
Signed-off-by: Alex Bennée <address@hidden>
Cc: Corey Minyard <address@hidden>
Cc: Kamil Rytarowski <address@hidden>
---
tests/Makefile.include | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tests/Makefile.include b/tests/Makefile.include
index 534ee487436..8566f5f119d 100644
--- a/tests/Makefile.include
+++ b/tests/Makefile.include
@@ -177,7 +177,9 @@ check-qtest-i386-$(CONFIG_SGA) +=
tests/boot-serial-test$(EXESUF)
check-qtest-i386-$(CONFIG_SLIRP) += tests/pxe-test$(EXESUF)
check-qtest-i386-y += tests/rtc-test$(EXESUF)
check-qtest-i386-$(CONFIG_ISA_IPMI_KCS) += tests/ipmi-kcs-test$(EXESUF)
+ifdef CONFIG_LINUX
check-qtest-i386-$(CONFIG_ISA_IPMI_BT) += tests/ipmi-bt-test$(EXESUF)
+endif
check-qtest-i386-y += tests/i440fx-test$(EXESUF)
check-qtest-i386-y += tests/fw_cfg-test$(EXESUF)
check-qtest-i386-y += tests/device-plug-test$(EXESUF)
--
2.20.1
- Re: [PATCH v1 4/6] tests/vm: update netbsd to version 8.1, (continued)
- [PATCH v1 3/6] tests/vm: use console_consume for netbsd, Alex Bennée, 2019/11/04
- [PATCH v1 1/6] tests/vm: netbsd autoinstall, using serial console, Alex Bennée, 2019/11/04
- [PATCH v1 6/6] tests/vm: support sites with sha512 checksums, Alex Bennée, 2019/11/04
- [PATCH v1 5/6] tests: only run ipmi-bt-test if CONFIG_LINUX,
Alex Bennée <=
- Re: [PATCH v1 0/6] testing/next (netbsd stuff), Peter Maydell, 2019/11/07