소스 검색

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>
Michael Ellerman 10 년 전
부모
커밋
281786ea2c
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      tools/testing/selftests/powerpc/mm/Makefile

+ 2 - 1
tools/testing/selftests/powerpc/mm/Makefile

@@ -2,8 +2,9 @@ noarg:
 	$(MAKE) -C ../
 	$(MAKE) -C ../
 
 
 TEST_PROGS := hugetlb_vs_thp_test subpage_prot
 TEST_PROGS := hugetlb_vs_thp_test subpage_prot
+TEST_FILES := tempfile
 
 
-all: $(TEST_PROGS) tempfile
+all: $(TEST_PROGS) $(TEST_FILES)
 
 
 $(TEST_PROGS): ../harness.c
 $(TEST_PROGS): ../harness.c