diff options
author | Andi Kleen <ak@linux.intel.com> | 2012-12-11 19:01:36 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-11 20:22:25 -0500 |
commit | fcc1f2d5dd3480214ab52e06d081d123019814ed (patch) | |
tree | 03e658ebec4942124bc1cde9b132dbecb22a2421 /tools/testing/selftests/vm/Makefile | |
parent | 42d7395feb56f0655cd8b68e06fc6063823449f8 (diff) |
selftests: add a test program for variable huge page sizes in mmap/shmget
Also remove -Wextra because gcc-4.6 emits lots of irritating
signed/unsigned comparison warnings.
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'tools/testing/selftests/vm/Makefile')
-rw-r--r-- | tools/testing/selftests/vm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testing/selftests/vm/Makefile b/tools/testing/selftests/vm/Makefile index b336b24aa6c0..7300d0702efe 100644 --- a/tools/testing/selftests/vm/Makefile +++ b/tools/testing/selftests/vm/Makefile | |||
@@ -1,9 +1,9 @@ | |||
1 | # Makefile for vm selftests | 1 | # Makefile for vm selftests |
2 | 2 | ||
3 | CC = $(CROSS_COMPILE)gcc | 3 | CC = $(CROSS_COMPILE)gcc |
4 | CFLAGS = -Wall -Wextra | 4 | CFLAGS = -Wall |
5 | 5 | ||
6 | all: hugepage-mmap hugepage-shm map_hugetlb | 6 | all: hugepage-mmap hugepage-shm map_hugetlb thuge-gen |
7 | %: %.c | 7 | %: %.c |
8 | $(CC) $(CFLAGS) -o $@ $^ | 8 | $(CC) $(CFLAGS) -o $@ $^ |
9 | 9 | ||