qemu test: Add -mno-sse (fix for travis)

This commit is contained in:
copy 2017-06-19 14:37:12 -05:00
parent 97c44f48b5
commit e2cebe1130
2 changed files with 6 additions and 4 deletions

View file

@ -2,7 +2,7 @@
CC=gcc
CC_I386=$(CC) -m32
QEMU_INCLUDES += -I../..
CFLAGS=-Wall -O2 -g -fno-strict-aliasing -static -mmmx
CFLAGS=-Wall -O2 -g -fno-strict-aliasing -static -mmmx -mno-sse
LDFLAGS=

View file

@ -30,12 +30,14 @@
#include <sys/mman.h>
#if !defined(__x86_64__)
#define TEST_VM86
//#define TEST_VM86
#define TEST_SEGS
#endif
//#define LINUX_VM86_IOPL_FIX
//#define TEST_P4_FLAGS
#ifdef __SSE__
//#ifdef __SSE__
#if 1
#define TEST_SSE
#define TEST_CMOV 1
#define TEST_FCOMI 1
@ -2981,7 +2983,7 @@ int main(int argc, char **argv)
test_code16();
#endif
#ifdef TEST_VM86
//test_vm86();
test_vm86();
#endif
#if !defined(__x86_64__)
test_self_modifying_code();