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>
18 lines
272 B
Makefile
18 lines
272 B
Makefile
noarg:
|
|
$(MAKE) -C ../
|
|
|
|
TEST_PROGS := hugetlb_vs_thp_test subpage_prot
|
|
TEST_FILES := tempfile
|
|
|
|
all: $(TEST_PROGS) $(TEST_FILES)
|
|
|
|
$(TEST_PROGS): ../harness.c
|
|
|
|
include ../../lib.mk
|
|
|
|
tempfile:
|
|
dd if=/dev/zero of=tempfile bs=64k count=1
|
|
|
|
clean:
|
|
rm -f $(TEST_PROGS) tempfile
|