diff options
author | Michael Ellerman <mpe@ellerman.id.au> | 2015-08-17 16:35:48 +1000 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2015-08-17 18:28:49 +1000 |
commit | 281786ea2cd03635648d1e2b131c6fbc0ed47b68 (patch) | |
tree | 2bd0a84cd8d63cc793358d5e40069c6d7608233b /tools | |
parent | 8c7dd08a8ccac3f0f3df6002dc8e86d3ca6c56a8 (diff) | |
download | linux-281786ea2cd03635648d1e2b131c6fbc0ed47b68.tar.gz linux-281786ea2cd03635648d1e2b131c6fbc0ed47b68.tar.bz2 linux-281786ea2cd03635648d1e2b131c6fbc0ed47b68.zip |
selftests/powerpc: Install tempfile so the subpage_prot_file test works
We forgot to install the tempfile, so when the selftests are installed
and then run the subpage_prot_file test fails.
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/testing/selftests/powerpc/mm/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/testing/selftests/powerpc/mm/Makefile b/tools/testing/selftests/powerpc/mm/Makefile index 41cc3ed66818..ee179e22308c 100644 --- a/tools/testing/selftests/powerpc/mm/Makefile +++ b/tools/testing/selftests/powerpc/mm/Makefile @@ -2,8 +2,9 @@ noarg: $(MAKE) -C ../ TEST_PROGS := hugetlb_vs_thp_test subpage_prot +TEST_FILES := tempfile -all: $(TEST_PROGS) tempfile +all: $(TEST_PROGS) $(TEST_FILES) $(TEST_PROGS): ../harness.c |