From: Andrew Cooper Date: Fri, 24 May 2019 15:14:53 +0000 (+0100) Subject: tests/x86emul: Annotate test blobs as executable code X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=3a9205788bdabb2a23d2fa3b85637b2e629d19e5;p=people%2Fsstabellini%2Fxen-unstable.git%2F.git 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 --- 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; \ )