diff options
author | Ilpo Järvinen <[email protected]> | 2023-07-17 16:14:49 +0300 |
---|---|---|
committer | Shuah Khan <[email protected]> | 2023-07-25 08:52:08 -0600 |
commit | 8e289f4542890168705219e54f0231dccfabddbe (patch) | |
tree | 156ec607d72beecef36edc8cddb6261fada190ed | |
parent | e0606daeaab4fba3cc418a202da81aa7a57c0342 (diff) |
selftests/resctrl: Add resctrl.h into build deps
Makefile only lists *.c as build dependencies for the resctrl_tests
executable which excludes resctrl.h.
Add *.h to wildcard() to include resctrl.h.
Fixes: 591a6e8588fc ("selftests/resctrl: Add basic resctrl file system operations and data")
Signed-off-by: Ilpo Järvinen <[email protected]>
Reviewed-by: Reinette Chatre <[email protected]>
Tested-by: Babu Moger <[email protected]>
Tested-by: Shaopeng Tan (Fujitsu) <[email protected]>
Signed-off-by: Shuah Khan <[email protected]>
-rw-r--r-- | tools/testing/selftests/resctrl/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/resctrl/Makefile b/tools/testing/selftests/resctrl/Makefile index 73d53257df42..5073dbc96125 100644 --- a/tools/testing/selftests/resctrl/Makefile +++ b/tools/testing/selftests/resctrl/Makefile @@ -7,4 +7,4 @@ TEST_GEN_PROGS := resctrl_tests include ../lib.mk -$(OUTPUT)/resctrl_tests: $(wildcard *.c) +$(OUTPUT)/resctrl_tests: $(wildcard *.[ch]) |