public inbox for elfutils@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] tests: run-low_high_pc.sh: drop redundant 'lx' suffix
@ 2022-08-06  8:55 Sergei Trofimovich
  2022-08-07 23:26 ` Mark Wielaard
  0 siblings, 1 reply; 2+ messages in thread
From: Sergei Trofimovich @ 2022-08-06  8:55 UTC (permalink / raw)
  To: elfutils-devel; +Cc: Sergei Trofimovich

Noticed when debugged test failure:

    lowpc: 8049000, highpc: 8049000lx
    ../sysdeps/i386/crti.S: [2def] '_init' highpc <= lowpc

Signed-off-by: Sergei Trofimovich <slyich@gmail.com>
---
 tests/ChangeLog     | 4 ++++
 tests/low_high_pc.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/tests/ChangeLog b/tests/ChangeLog
index 0c6f68ef..d2952cc9 100644
--- a/tests/ChangeLog
+++ b/tests/ChangeLog
@@ -1,3 +1,7 @@
+2022-08-04  Sergei Trofimovich  <slyich@gmail.com>
+
+	* low_high_pc.c (handle_die): Drop redundant 'lx' suffix.
+
 2022-08-01  Mark Wielaard  <mark@klomp.org>
 
 	* 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 78b6ad08..cd022b1c 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");
     }
 
-- 
2.37.1


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] tests: run-low_high_pc.sh: drop redundant 'lx' suffix
  2022-08-06  8:55 [PATCH] tests: run-low_high_pc.sh: drop redundant 'lx' suffix Sergei Trofimovich
@ 2022-08-07 23:26 ` Mark Wielaard
  0 siblings, 0 replies; 2+ messages in thread
From: Mark Wielaard @ 2022-08-07 23:26 UTC (permalink / raw)
  To: Sergei Trofimovich; +Cc: elfutils-devel

Hi,

On Sat, Aug 06, 2022 at 09:55:06AM +0100, Sergei Trofimovich via Elfutils-devel wrote:
> Noticed when debugged test failure:
> 
>     lowpc: 8049000, highpc: 8049000lx
>     ../sysdeps/i386/crti.S: [2def] '_init' highpc <= lowpc

Thanks, looks obviously correct.
Pushed.

Cheers,

Mark


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-08-07 23:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-06  8:55 [PATCH] tests: run-low_high_pc.sh: drop redundant 'lx' suffix Sergei Trofimovich
2022-08-07 23:26 ` Mark Wielaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).