Skip to content

Commit a40bf26

Browse files
committed
Disable test_x86_unaligned_access on be hosts
1 parent 428ed8f commit a40bf26

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/unit/test_x86.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1124,7 +1124,10 @@ static void test_x86_invalid_vex_l(void)
11241124
OK(uc_close(uc));
11251125
}
11261126

1127-
#ifndef TARGET_READ_INLINED
1127+
// AARCH64 inline the read while s390x won't split the access. Though not tested on other hosts
1128+
// but we restrict a bit more.
1129+
#if !defined(TARGET_READ_INLINED) && defined(BOOST_LITTLE_ENDIAN)
1130+
11281131
struct writelog_t {
11291132
uint32_t addr, size;
11301133
};

0 commit comments

Comments
 (0)