From 3a9205788bdabb2a23d2fa3b85637b2e629d19e5 Mon Sep 17 00:00:00 2001 From: Andrew Cooper Date: Fri, 24 May 2019 16:14:53 +0100 Subject: [PATCH] tests/x86emul: Annotate test blobs as executable code This causes objdump to disassemble them, rather than rendering them as straight hex data. Signed-off-by: Andrew Cooper Acked-by: Jan Beulich --- tools/tests/x86_emulator/Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/tools/tests/x86_emulator/Makefile b/tools/tests/x86_emulator/Makefile index a3a65556b6..b9312e0044 100644 --- a/tools/tests/x86_emulator/Makefile +++ b/tools/tests/x86_emulator/Makefile @@ -191,7 +191,10 @@ $(addsuffix .h,$(TESTCASES)): %.h: %.c testcase.mk Makefile (echo 'static const unsigned int __attribute__((section(".test, \"ax\", @progbits #")))' \ "$${prefix}_$(arch)$${flavor}[] = {"; \ od -v -t x $*.bin | sed -e 's/^[0-9]* /0x/' -e 's/ /, 0x/g' -e 's/$$/,/'; \ - echo "};") >>$@.new; \ + echo "};"; \ + echo "asm(\".type $${prefix}_$(arch)$${flavor}, STT_NOTYPE;\");"; \ + echo "asm(\".type $${prefix}_$(arch)$${flavor}, STT_FUNC;\");"; \ + ) >>$@.new; \ rm -f $*.bin; \ done; \ ) @@ -207,7 +210,10 @@ $(addsuffix -opmask.h,$(OPMASK)): %.h: opmask.S testcase.mk Makefile (echo 'static const unsigned int __attribute__((section(".test, \"ax\", @progbits #")))' \ "$${prefix}_$(arch)$${flavor}[] = {"; \ od -v -t x $*.bin | sed -e 's/^[0-9]* /0x/' -e 's/ /, 0x/g' -e 's/$$/,/'; \ - echo "};") >>$@.new; \ + echo "};"; \ + echo "asm(\".type $${prefix}_$(arch)$${flavor}, STT_NOTYPE;\");"; \ + echo "asm(\".type $${prefix}_$(arch)$${flavor}, STT_FUNC;\");"; \ + ) >>$@.new; \ rm -f $*.bin; \ done; \ ) -- 2.30.2