riscv: kselftests: Fix mm build by removing testcases subdirectory
kselftests fails to build because the mm/testcases subdirectory is not created and then the compiler fails to output the binary there. So fix this by simply removing this subdirectory which is not very useful. Signed-off-by: Alexandre Ghiti <alexghiti@rivosinc.com> Reviewed-by: Charlie Jenkins <charlie@rivosinc.com> Link: https://lore.kernel.org/r/20230915100113.13131-1-alexghiti@rivosinc.com Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
This commit is contained in:
parent
8eb8fe67e2
commit
b06fab003a
@ -5,11 +5,11 @@
|
||||
# Additional include paths needed by kselftest.h and local headers
|
||||
CFLAGS += -D_GNU_SOURCE -std=gnu99 -I.
|
||||
|
||||
TEST_GEN_FILES := testcases/mmap_default testcases/mmap_bottomup
|
||||
TEST_GEN_FILES := mmap_default mmap_bottomup
|
||||
|
||||
TEST_PROGS := testcases/run_mmap.sh
|
||||
TEST_PROGS := run_mmap.sh
|
||||
|
||||
include ../../lib.mk
|
||||
|
||||
$(OUTPUT)/mm: testcases/mmap_default.c testcases/mmap_bottomup.c testcases/mmap_tests.h
|
||||
$(OUTPUT)/mm: mmap_default.c mmap_bottomup.c mmap_tests.h
|
||||
$(CC) -o$@ $(CFLAGS) $(LDFLAGS) $^
|
||||
|
@ -1,6 +1,6 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
#include <sys/mman.h>
|
||||
#include <testcases/mmap_test.h>
|
||||
#include <mmap_test.h>
|
||||
|
||||
#include "../../kselftest_harness.h"
|
||||
|
@ -1,6 +1,6 @@
|
||||
// SPDX-License-Identifier: GPL-2.0-only
|
||||
#include <sys/mman.h>
|
||||
#include <testcases/mmap_test.h>
|
||||
#include <mmap_test.h>
|
||||
|
||||
#include "../../kselftest_harness.h"
|
||||
|
Loading…
x
Reference in New Issue
Block a user