On Wed, May 18, 2022 at 06:16:19AM +0300, Jarkko Sakkinen wrote:
TEST_GEN_FILES contains files that are generated during compilation and are required to be included together with the test binaries, e.g. when performing:
make -C tools/testing/selftests install INSTALL_PATH=/some/other/path [*]
Add test_encl.elf to TEST_GEN_FILES because otherwise the installed test binary will fail to run.
[*] https://docs.kernel.org/dev-tools/kselftest.html
Cc: stable@vger.kernel.org Fixes: 2adcba79e69d ("selftests/x86: Add a selftest for SGX") Signed-off-by: Jarkko Sakkinen jarkko@kernel.org
I found this while trying to create an image with BuldRoot containing the self-tests:
https://github.com/jarkkojs/buildroot-sgx
On SGX capable machine can be built and run in QEMU as
make sgx_x86_64_defconfig && make && output/image/run.sh
BR, Jarkko