From: Sergei Trofimovich via Elfutils-devel Date: Sat, 6 Aug 2022 08:55:06 +0000 (+0100) Subject: tests: run-low_high_pc.sh: drop redundant 'lx' suffix X-Git-Tag: elfutils-0.188~48 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b661e39349a89a47793c4d15e9ca8df016c3871b;p=thirdparty%2Felfutils.git tests: run-low_high_pc.sh: drop redundant 'lx' suffix Noticed when debugged test failure: lowpc: 8049000, highpc: 8049000lx ../sysdeps/i386/crti.S: [2def] '_init' highpc <= lowpc Signed-off-by: Sergei Trofimovich --- diff --git a/tests/ChangeLog b/tests/ChangeLog index 0c6f68ef2..d2952cc91 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,3 +1,7 @@ +2022-08-04 Sergei Trofimovich + + * low_high_pc.c (handle_die): Drop redundant 'lx' suffix. + 2022-08-01 Mark Wielaard * run-debuginfod-percent-escape.sh: Add initial scan wait_ready. diff --git a/tests/low_high_pc.c b/tests/low_high_pc.c index 78b6ad08d..cd022b1cc 100644 --- a/tests/low_high_pc.c +++ b/tests/low_high_pc.c @@ -72,7 +72,7 @@ handle_die (Dwarf_Die *die, void *arg) && highpc <= lowpc && ! (dwarf_tag (die) == DW_TAG_compile_unit && highpc == lowpc)) { - printf("lowpc: %" PRIx64 ", highpc: %" PRIx64 "lx\n", lowpc, highpc); + printf("lowpc: %" PRIx64 ", highpc: %" PRIx64 "\n", lowpc, highpc); fail (off, name, "highpc <= lowpc"); }