diff options
author | Stefano Brivio <sbrivio@redhat.com> | 2022-04-06 15:39:04 +0200 |
---|---|---|
committer | Stefano Brivio <sbrivio@redhat.com> | 2022-04-06 15:39:04 +0200 |
commit | 4aa5ae07f8ff5cdaa1067a4a6d61345574dad420 (patch) | |
tree | f6a6287cdb852d5abdb37d868d03317e0ee60784 | |
parent | 9bb4a41d19f9ddc44208849ce6f84fe79fa220a7 (diff) | |
download | mbuto-4aa5ae07f8ff5cdaa1067a4a6d61345574dad420.tar mbuto-4aa5ae07f8ff5cdaa1067a4a6d61345574dad420.tar.gz mbuto-4aa5ae07f8ff5cdaa1067a4a6d61345574dad420.tar.bz2 mbuto-4aa5ae07f8ff5cdaa1067a4a6d61345574dad420.tar.lz mbuto-4aa5ae07f8ff5cdaa1067a4a6d61345574dad420.tar.xz mbuto-4aa5ae07f8ff5cdaa1067a4a6d61345574dad420.tar.zst mbuto-4aa5ae07f8ff5cdaa1067a4a6d61345574dad420.zip |
mbuto: Make sure kselftests are "installed" before building image
We need to make sure test programs are built and everything is
included in tools/testing/selftests/kselftest_install before
we can include that in the guest image.
Reported-by: Sevinj Aghayeva <sevinj.aghayeva@gmail.com>
Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
-rwxr-xr-x | mbuto | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -204,6 +204,9 @@ profile_kselftests() { fi KERNEL="$(cat include/config/kernel.release)" + + ${MAKE} -C tools/testing/selftests/ install + MODDIR="$(${REALPATH} .mbuto_mods)" ${RM} -rf "${MODDIR}" ${MKDIR} -p "${MODDIR}" |