diff mbox series

[RFC,3/3] testcase: get rid of compiling errors

Message ID 20190608054550.13744-3-liwang@redhat.com
State Superseded
Headers show
Series [RFC,1/3] lib: adding tst_on_arch function in library | expand

Commit Message

Li Wang June 8, 2019, 5:45 a.m. UTC
Signed-off-by: Li Wang <liwang@redhat.com>
---
 configure.ac             | 1 +
 testcases/cve/meltdown.c | 5 +++++
 2 files changed, 6 insertions(+)
diff mbox series

Patch

diff --git a/configure.ac b/configure.ac
index 5a3dc5b62..39b2d6da7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -58,6 +58,7 @@  AC_CHECK_HEADERS([ \
     sys/shm.h \
     sys/ustat.h \
     sys/xattr.h \
+    emmintrin.h \
 ])
 
 AC_CHECK_FUNCS([ \
diff --git a/testcases/cve/meltdown.c b/testcases/cve/meltdown.c
index da35213ec..e6e911fcc 100644
--- a/testcases/cve/meltdown.c
+++ b/testcases/cve/meltdown.c
@@ -29,6 +29,7 @@ 
 #include <ctype.h>
 #include <sys/utsname.h>
 
+#ifdef HAVE_EMMINTRIN_H
 #include <emmintrin.h>
 
 #include "libtsc.h"
@@ -387,3 +388,7 @@  static struct tst_test test = {
 	.cleanup = cleanup,
 	.min_kver = "2.6.32"
 };
+
+#else /* HAVE_EMMINTRIN_H */
+	TST_TEST_TCONF("<emmintrin.h> is not supported");
+#endif