summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPranith Kumar <bobby.prani@gmail.com>2014-09-15 18:59:42 -0400
committerMaciej Wereski <m.wereski@partner.samsung.com>2014-12-12 17:13:06 +0100
commit8f54944cc877b3a88d58dd78aa7be1fb539af9d4 (patch)
treeea1582a350231fa54e875128d43a7268fbfc671d
parent472c4df2563a78b51c973ad0f9cce6e16211ab79 (diff)
downloadlinux-3.10-8f54944cc877b3a88d58dd78aa7be1fb539af9d4.tar.gz
linux-3.10-8f54944cc877b3a88d58dd78aa7be1fb539af9d4.tar.bz2
linux-3.10-8f54944cc877b3a88d58dd78aa7be1fb539af9d4.zip
selftests/memfd: Run test on all architecturessubmit/kdbus-integration/20141212.161633
Remove the dependence on x86 to run the memfd test. Verfied on 32-bit powerpc. Signed-off-by: Pranith Kumar <bobby.prani@gmail.com> Reviewed-by: David Herrmann <dh.herrmann@gmail.com> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
-rw-r--r--tools/testing/selftests/memfd/Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/tools/testing/selftests/memfd/Makefile b/tools/testing/selftests/memfd/Makefile
index 6816c491c5f..b80cd10d53b 100644
--- a/tools/testing/selftests/memfd/Makefile
+++ b/tools/testing/selftests/memfd/Makefile
@@ -1,38 +1,17 @@
-uname_M := $(shell uname -m 2>/dev/null || echo not)
-ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/)
-ifeq ($(ARCH),i386)
- ARCH := X86
-endif
-ifeq ($(ARCH),x86_64)
- ARCH := X86
-endif
-
CFLAGS += -D_FILE_OFFSET_BITS=64
-CFLAGS += -I../../../../arch/x86/include/generated/uapi/
-CFLAGS += -I../../../../arch/x86/include/uapi/
CFLAGS += -I../../../../include/uapi/
CFLAGS += -I../../../../include/
all:
-ifeq ($(ARCH),X86)
gcc $(CFLAGS) memfd_test.c -o memfd_test
-else
- echo "Not an x86 target, can't build memfd selftest"
-endif
run_tests: all
-ifeq ($(ARCH),X86)
gcc $(CFLAGS) memfd_test.c -o memfd_test
-endif
@./memfd_test || echo "memfd_test: [FAIL]"
build_fuse:
-ifeq ($(ARCH),X86)
gcc $(CFLAGS) fuse_mnt.c `pkg-config fuse --cflags --libs` -o fuse_mnt
gcc $(CFLAGS) fuse_test.c -o fuse_test
-else
- echo "Not an x86 target, can't build memfd selftest"
-endif
run_fuse: build_fuse
@./run_fuse_test.sh || echo "fuse_test: [FAIL]"