summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJakub Czapiga <jacz@semihalf.com>2021-12-03 08:23:28 +0000
committerPatrick Georgi <patrick@coreboot.org>2021-12-06 12:34:09 +0000
commitb88d845c5657537f0e844ae461b42ab21bec1d42 (patch)
tree0bf6a0a69127d4b4521c59a104c22b457026969e /tests
parent7676fea00099ea921d3df7627089f3c8626194ab (diff)
downloadcoreboot-b88d845c5657537f0e844ae461b42ab21bec1d42.tar.gz
coreboot-b88d845c5657537f0e844ae461b42ab21bec1d42.tar.bz2
coreboot-b88d845c5657537f0e844ae461b42ab21bec1d42.zip
tests: Fix objcopy --add-symbol arguments creation
Remove unnecessary escape bachslashes from: addr="$(echo \"$$$$sym_line\" ... The 'echo' will print output line with double quote characters, which then will be included in the values passed to --add-symbol. This can cause errors. Change-Id: I6023515191d6c236bf57870159a35d518f25e9d8 Reported-by: Yu-Ping Wu <yupingso@chromium.org> Signed-off-by: Jakub Czapiga <jacz@semihalf.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/59858 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile.inc7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/Makefile.inc b/tests/Makefile.inc
index 7a7ab1d03723..cbaf2c260af8 100644
--- a/tests/Makefile.inc
+++ b/tests/Makefile.inc
@@ -156,10 +156,11 @@ $($(1)-objs): $(testobj)/$(1)/%.o: $$$$*.c $$($(1)-config-file)
-MF $$(basename $$@).d -MT $$@ -c $$< -o $$@.orig
objcopy_wrap_flags=''; \
for sym in $$($(1)-mocks); do \
- sym_line="$$$$($(OBJDUMP) -t $$@.orig | grep -E "[0-9a-fA-F]+\\s+w\\s+F\\s+.*\\s$$$$sym$$$$")"; \
+ sym_line="$$$$($(OBJDUMP) -t $$@.orig \
+ | grep -E "[0-9a-fA-F]+\\s+w\\s+F\\s+.*\\s$$$$sym$$$$")"; \
if [ ! -z "$$$$sym_line" ] ; then \
- addr="$$$$(echo \"$$$$sym_line\" | awk '{ print $$$$1 }')"; \
- section="$$$$(echo \"$$$$sym_line\" | awk '{ print $$$$(NF - 2) }')"; \
+ addr="$$$$(echo "$$$$sym_line" | awk '{ print $$$$1 }')"; \
+ section="$$$$(echo "$$$$sym_line" | awk '{ print $$$$(NF - 2) }')"; \
objcopy_wrap_flags="$$$$objcopy_wrap_flags --add-symbol __real_$$$${sym}=$$$${section}:0x$$$${addr},function,global"; \
fi \
done ; \