aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/powerpc/mm/Makefile
diff options
context:
space:
mode:
authorMichael Ellerman <mpe@ellerman.id.au>2014-05-28 18:21:18 +1000
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2014-06-06 13:55:04 +1000
commitd34b661b10ab49c9058cd6602fd0162ba6db40a3 (patch)
treec2cb021b5db8aeaec1ff1981e8abbce6bae72973 /tools/testing/selftests/powerpc/mm/Makefile
parentpowerpc/mm: Check paca psize is up to date for huge mappings (diff)
downloadlinux-dev-d34b661b10ab49c9058cd6602fd0162ba6db40a3.tar.xz
linux-dev-d34b661b10ab49c9058cd6602fd0162ba6db40a3.zip
selftests/powerpc: Test the THP bug we fixed in the previous commit
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to '')
-rw-r--r--tools/testing/selftests/powerpc/mm/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/tools/testing/selftests/powerpc/mm/Makefile b/tools/testing/selftests/powerpc/mm/Makefile
new file mode 100644
index 000000000000..357ccbd6bad9
--- /dev/null
+++ b/tools/testing/selftests/powerpc/mm/Makefile
@@ -0,0 +1,18 @@
+noarg:
+ $(MAKE) -C ../
+
+PROGS := hugetlb_vs_thp_test
+
+all: $(PROGS)
+
+$(PROGS): ../harness.c
+
+run_tests: all
+ @-for PROG in $(PROGS); do \
+ ./$$PROG; \
+ done;
+
+clean:
+ rm -f $(PROGS)
+
+.PHONY: all run_tests clean