Hi,
Recently I'm looking at these two test programs and wondering that whether we can port it to ARM architecture. I ask because the current Make file for both test saying:
ifeq ($(ARCH),x86)
gcc breakpoint_test.c -o breakpoint_test
else
echo "Not an x86 target, can't build breakpoints selftests"
endif
all:
ifeq ($(ARCH),x86)
gcc $(CFLAGS) msgque.c -o msgque_test
else
echo "Not an x86 target, can't build msgque selftest"
endif
Actually I'm also interested in kcmp test but I have got email feedback from Shuah Khan <
> saying that this one has been available for all architectures on Kernel 3.19-RC1 or higher.