public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
From: Tom de Vries <vries@sourceware.org>
To: gdb-cvs@sourceware.org
Subject: [binutils-gdb] [gdb/testsuite] Add warning for timeout in accept_gdb_output
Date: Tue, 25 Apr 2023 06:33:59 +0000 (GMT)	[thread overview]
Message-ID: <20230425063359.BDB463858D32@sourceware.org> (raw)

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=0d00a5f9d429c7cbae87b9d1057fb4f9e4ae18c2

commit 0d00a5f9d429c7cbae87b9d1057fb4f9e4ae18c2
Author: Tom de Vries <tdevries@suse.de>
Date:   Tue Apr 25 08:33:56 2023 +0200

    [gdb/testsuite] Add warning for timeout in accept_gdb_output
    
    In accept_gdb_output we have:
    ...
                timeout {
                    # Assume a timeout means we somehow missed the
                    # expected result, and carry on.
                    return 0
                }
    ...
    
    The timeout is silent, and though in some places the return value is checked,
    this is not done consistently, and consequently there are silent timeouts
    when running the TUI testsuite (gdb.tui/*.exp and gdb.python/tui*.exp).
    
    Each timeout is 10 seconds, and there are 5 in total in the TUI tests, taking
    50 seconds overall:
    ...
    real    1m0.275s
    user    0m10.440s
    sys     0m1.343s
    ...
    
    With an entire testsuite run taking about 30 minutes, that is about 2.5% of
    the time spent waiting in TUI tests.
    
    Let's make the timeouts visible using a warning, such that they can be fixed.
    
    Tested on x86_64-linux.

Diff:
---
 gdb/testsuite/lib/tuiterm.exp | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gdb/testsuite/lib/tuiterm.exp b/gdb/testsuite/lib/tuiterm.exp
index 05edfe9a5b1..ff38af082da 100644
--- a/gdb/testsuite/lib/tuiterm.exp
+++ b/gdb/testsuite/lib/tuiterm.exp
@@ -707,6 +707,8 @@ namespace eval Term {
 	    timeout {
 		# Assume a timeout means we somehow missed the
 		# expected result, and carry on.
+		warning "timeout in accept_gdb_output"
+		dump_screen
 		return 0
 	    }
 	}

                 reply	other threads:[~2023-04-25  6:33 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230425063359.BDB463858D32@sourceware.org \
    --to=vries@sourceware.org \
    --cc=gdb-cvs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).