diff options
| author | David Herrmann <dh.herrmann@gmail.com> | 2014-08-08 17:25:32 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-08-08 18:57:31 -0400 |
| commit | 4f5ce5e8d7e2da3c714df8a7fa42edb9f992fc52 (patch) | |
| tree | 6bdac69397a13f372a4466e7c629924433e619bb /tools/testing/selftests/memfd/Makefile | |
| parent | 9183df25fe7b194563db3fec6dc3202a5855839c (diff) | |
selftests: add memfd_create() + sealing tests
Some basic tests to verify sealing on memfds works as expected and
guarantees the advertised semantics.
Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
Acked-by: Hugh Dickins <hughd@google.com>
Cc: Michael Kerrisk <mtk.manpages@gmail.com>
Cc: Ryan Lortie <desrt@desrt.ca>
Cc: Lennart Poettering <lennart@poettering.net>
Cc: Daniel Mack <zonque@gmail.com>
Cc: Andy Lutomirski <luto@amacapital.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'tools/testing/selftests/memfd/Makefile')
| -rw-r--r-- | tools/testing/selftests/memfd/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tools/testing/selftests/memfd/Makefile b/tools/testing/selftests/memfd/Makefile new file mode 100644 index 000000000000..36653b903140 --- /dev/null +++ b/tools/testing/selftests/memfd/Makefile | |||
| @@ -0,0 +1,29 @@ | |||
| 1 | uname_M := $(shell uname -m 2>/dev/null || echo not) | ||
| 2 | ARCH ?= $(shell echo $(uname_M) | sed -e s/i.86/i386/) | ||
| 3 | ifeq ($(ARCH),i386) | ||
| 4 | ARCH := X86 | ||
| 5 | endif | ||
| 6 | ifeq ($(ARCH),x86_64) | ||
| 7 | ARCH := X86 | ||
| 8 | endif | ||
| 9 | |||
| 10 | CFLAGS += -I../../../../arch/x86/include/generated/uapi/ | ||
| 11 | CFLAGS += -I../../../../arch/x86/include/uapi/ | ||
| 12 | CFLAGS += -I../../../../include/uapi/ | ||
| 13 | CFLAGS += -I../../../../include/ | ||
| 14 | |||
| 15 | all: | ||
| 16 | ifeq ($(ARCH),X86) | ||
| 17 | gcc $(CFLAGS) memfd_test.c -o memfd_test | ||
| 18 | else | ||
| 19 | echo "Not an x86 target, can't build memfd selftest" | ||
| 20 | endif | ||
| 21 | |||
| 22 | run_tests: all | ||
| 23 | ifeq ($(ARCH),X86) | ||
| 24 | gcc $(CFLAGS) memfd_test.c -o memfd_test | ||
| 25 | endif | ||
| 26 | @./memfd_test || echo "memfd_test: [FAIL]" | ||
| 27 | |||
| 28 | clean: | ||
| 29 | $(RM) memfd_test | ||
