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: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
Michael Ellerman 2018-07-26 22:24:58 +10:00
parent 95f9b3af40
commit 1cdc6c14b0
3 changed files with 3 additions and 0 deletions

View file

@ -55,6 +55,7 @@ int tm_sigreturn(void)
uint64_t ret = 0;
SKIP_IF(!have_htm());
SKIP_IF(!is_ppc64le());
memset(&sa, 0, sizeof(sa));
sa.sa_handler = handler;

View file

@ -26,6 +26,7 @@ int test_tar(void)
int i;
SKIP_IF(!have_htm());
SKIP_IF(!is_ppc64le());
for (i = 0; i < num_loops; i++)
{

View file

@ -46,6 +46,7 @@ int test_vmxcopy()
uint64_t aborted = 0;
SKIP_IF(!have_htm());
SKIP_IF(!is_ppc64le());
fd = mkstemp(tmpfile);
assert(fd >= 0);