Commit 1cdc6c14 authored by Michael Ellerman's avatar Michael Ellerman

selftests/powerpc: Only run some tests on ppc64le

These tests are currently failing on (some) big endian systems. Until
we can fix that, skip them unless we're on ppc64le.
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 95f9b3af
...@@ -55,6 +55,7 @@ int tm_sigreturn(void) ...@@ -55,6 +55,7 @@ int tm_sigreturn(void)
uint64_t ret = 0; uint64_t ret = 0;
SKIP_IF(!have_htm()); SKIP_IF(!have_htm());
SKIP_IF(!is_ppc64le());
memset(&sa, 0, sizeof(sa)); memset(&sa, 0, sizeof(sa));
sa.sa_handler = handler; sa.sa_handler = handler;
......
...@@ -26,6 +26,7 @@ int test_tar(void) ...@@ -26,6 +26,7 @@ int test_tar(void)
int i; int i;
SKIP_IF(!have_htm()); SKIP_IF(!have_htm());
SKIP_IF(!is_ppc64le());
for (i = 0; i < num_loops; i++) for (i = 0; i < num_loops; i++)
{ {
......
...@@ -46,6 +46,7 @@ int test_vmxcopy() ...@@ -46,6 +46,7 @@ int test_vmxcopy()
uint64_t aborted = 0; uint64_t aborted = 0;
SKIP_IF(!have_htm()); SKIP_IF(!have_htm());
SKIP_IF(!is_ppc64le());
fd = mkstemp(tmpfile); fd = mkstemp(tmpfile);
assert(fd >= 0); assert(fd >= 0);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment