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 <shuahkh@osg.samsung.com> saying that this one has been available for all architectures on Kernel 3.19-RC1 or higher.

As I'm not a Kernel guy so I don't know how to handle the porting work, or is this should be done in Linaro Kernel team? In which I believe can get through more effectively.

Thanks in advance.


Botao