Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

+3
+1
tools/testing/selftests/powerpc/tm/tm-sigreturn.c
··· 55 55 uint64_t ret = 0; 56 56 57 57 SKIP_IF(!have_htm()); 58 + SKIP_IF(!is_ppc64le()); 58 59 59 60 memset(&sa, 0, sizeof(sa)); 60 61 sa.sa_handler = handler;
+1
tools/testing/selftests/powerpc/tm/tm-tar.c
··· 26 26 int i; 27 27 28 28 SKIP_IF(!have_htm()); 29 + SKIP_IF(!is_ppc64le()); 29 30 30 31 for (i = 0; i < num_loops; i++) 31 32 {
+1
tools/testing/selftests/powerpc/tm/tm-vmxcopy.c
··· 46 46 uint64_t aborted = 0; 47 47 48 48 SKIP_IF(!have_htm()); 49 + SKIP_IF(!is_ppc64le()); 49 50 50 51 fd = mkstemp(tmpfile); 51 52 assert(fd >= 0);