public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout
@ 2019-10-20  3:13 gdb-buildbot
  2019-10-20  3:13 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-10-20  3:13 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 9223170f68f85787b9cd85e76d3bac3eaa69cafb ***

commit 9223170f68f85787b9cd85e76d3bac3eaa69cafb
Author:     Simon Marchi <simon.marchi@polymtl.ca>
AuthorDate: Mon Oct 14 00:37:30 2019 -0400
Commit:     Simon Marchi <simon.marchi@polymtl.ca>
CommitDate: Mon Oct 14 12:12:24 2019 -0400

    gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout
    
    Commit 580f1034 ("Increase timeout in
    gdb.mi/list-thread-groups-available.exp") changed
    gdb.mi/list-thread-groups-available.exp to significantly increase the
    timeout, which was necessary for when running with make check-read1.
    
    Pedro suggested a better alternative, which is to use gdb_test_multiple
    and consume one entry at a time.  This patch does that.
    
    gdb/testsuite/ChangeLog:
    
            * gdb.mi/list-thread-groups-available.exp: Read entries one by
            one instead of increasing timeout.
    
    Change-Id: I51b689458503240f24e401f054e6583d9172ebdf

diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index ba72489629..ce6e0f221a 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2019-10-14  Simon Marchi <simon.marchi@polymtl.ca>
+
+	* gdb.mi/list-thread-groups-available.exp: Read entries one by
+	one instead of increasing timeout.
+
 2019-10-13  Tom de Vries  <tdevries@suse.de>
 
 	PR record/25038
diff --git a/gdb/testsuite/gdb.mi/list-thread-groups-available.exp b/gdb/testsuite/gdb.mi/list-thread-groups-available.exp
index ab5c716a57..3a7517ff48 100644
--- a/gdb/testsuite/gdb.mi/list-thread-groups-available.exp
+++ b/gdb/testsuite/gdb.mi/list-thread-groups-available.exp
@@ -54,15 +54,24 @@ set cores_re "cores=\\\[(\"$decimal\"(,\"$decimal\")*)?\\\]"
 # List all available processes.
 set process_entry_re "{${id_re},${type_re}(,$description_re)?(,$user_re)?(,$cores_re)?}"
 
-# Increase the timeout: when running with `make check-read1`, this can take
-# a bit of time, as there is a lot of output generated, hence a lot of read
-# syscalls.
-with_read1_timeout_factor 10 {
-    mi_gdb_test \
-	"-list-thread-groups --available" \
-	"\\^done,groups=\\\[${process_entry_re}(,$process_entry_re)*\\\]" \
-	"list available thread groups"
-}
+# The list can be long, so read entries one by one to avoid hitting the
+# timeout (especially when running with check-read1).
+gdb_test_multiple "-list-thread-groups --available" "list available thread groups" {
+    -re "\\^done,groups=\\\[" {
+	# The beginning of the response.
+	exp_continue
+    }
+
+    -re "${process_entry_re}," {
+	# All entries except the last one.
+	exp_continue
+    }
+
+    -re "${process_entry_re}\\\]\r\n${mi_gdb_prompt}" {
+	# The last entry.
+	pass $gdb_test_name
+    }
+} $mi_gdb_prompt
 
 # List specific processes, make sure there are two entries.
 set spawn_id_1 [remote_spawn target $binfile]


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

* Failures on Ubuntu-Aarch64-m64, branch master
  2019-10-20  3:13 [binutils-gdb] gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout gdb-buildbot
@ 2019-10-20  3:13 ` gdb-buildbot
  2019-10-20  4:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-10-20  3:13 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/8/builds/961

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        9223170f68f85787b9cd85e76d3bac3eaa69cafb

Subject of commit:
        gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-m64/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-3.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-3.exp: set max-completions unlimited
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set architecture
new UNRESOLVED: gdb.base/all-architectures-7.exp: complete set osabi
new UNRESOLVED: gdb.base/all-architectures-7.exp: set max-completions unlimited
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Child&& in f2: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.cp/rvalue-ref-params.exp: print value of Parent&& in f1: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dlang/watch-loc.exp: disassemble _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: p _Dmain_label - _Dmain
new UNRESOLVED: gdb.dlang/watch-loc.exp: x/2i _Dmain+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: disassemble second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p first_label - first
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: p second_label - second
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i first+
new UNRESOLVED: gdb.dwarf2/ada-linkage-name.exp: x/2i second+
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: disassemble f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: p f_label - f
new UNRESOLVED: gdb.dwarf2/atomic-type.exp: x/2i f+
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/bitfield-parent-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-lexical-block-bare.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: console: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p func01_label - func01
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i func01+
new UNRESOLVED: gdb.dwarf2/dw2-opt-structptr.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/implptr-optimized-out.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/missing-type-name.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/opaque-type-lookup.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/typedef-void-finish.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/var-access.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/var-access.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/var-access.exp: x/2i main+
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble func
new UNRESOLVED: gdb.dwarf2/void-type.exp: disassemble main
new UNRESOLVED: gdb.dwarf2/void-type.exp: p func_label - func
new UNRESOLVED: gdb.dwarf2/void-type.exp: p main_label - main
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i func+
new UNRESOLVED: gdb.dwarf2/void-type.exp: x/2i main+
new UNRESOLVED: gdb.python/py-prompt.exp: prompt_hook argument is default prompt. 3
new UNRESOLVED: gdb.python/py-prompt.exp: prompt_hook argument is default prompt. 4
new UNRESOLVED: gdb.python/py-prompt.exp: retrieving the prompt causes no extra prompt_hook calls 3
new UNRESOLVED: gdb.python/py-prompt.exp: retrieving the prompt causes no extra prompt_hook calls 4
new UNRESOLVED: gdb.python/py-prompt.exp: show prompt gets the correct result 3
new UNRESOLVED: gdb.python/py-prompt.exp: show prompt gets the correct result 4
new UNRESOLVED: gdb.reverse/sigall-precsave.exp: sigall-precsave.exp
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-m64/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-m64/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.table.gz>


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

* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
  2019-10-20  3:13 [binutils-gdb] gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout gdb-buildbot
  2019-10-20  3:13 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
@ 2019-10-20  4:39 ` gdb-buildbot
  2019-10-20  5:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-10-20  4:39 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-extended-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/5/builds/953

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        9223170f68f85787b9cd85e76d3bac3eaa69cafb

Subject of commit:
        gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/dup-sect.exp: var1 after strip
new UNRESOLVED: gdb.base/examine-backward.exp: could not run to main
new UNRESOLVED: gdb.base/func-ptrs.exp: could not run to main
new UNRESOLVED: gdb.base/jit-attach-pie.exp: attach
new UNRESOLVED: gdb.base/shreloc.exp: can't run to main
new UNRESOLVED: gdb.base/sss-bp-on-user-bp-2.exp: can't run to main
new UNRESOLVED: gdb.base/symtab-search-order.exp: can't run to main
UNRESOLVED -> FAIL: gdb.cp/ref-params.exp: print f1
UNRESOLVED -> FAIL: gdb.cp/ref-params.exp: print mf1
UNRESOLVED -> FAIL: gdb.cp/ref-params.exp: print mf2
UNRESOLVED -> FAIL: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new UNRESOLVED: gdb.cp/temargs.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.dwarf2/dw2-anon-mptr.exp: set cp-abi gnu-v3
new UNRESOLVED: gdb.dwarf2/nonvar-access.exp: failed to prepare
new UNRESOLVED: gdb.gdb/selftest.exp: breakpoint in captured_main
new UNRESOLVED: gdb.guile/scm-breakpoint.exp: Guile support is disabled.
new UNRESOLVED: gdb.guile/scm-value-cc.exp: Guile support is disabled.
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test boolean parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test boolean parameter value is True
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: boolean parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: check if python 3
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test deprecated API parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test deprecated API parameter value is True
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: deprecated API parameter: turn off parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: enum gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: set enum to two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: set invalid enum parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: show parameter is initial value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: show parameter is new value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: test enum parameter value is one
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: enum parameter: test enum parameter value is two
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: file gdb parameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: set new file parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: set test-file-param
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: show initial file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: show new file value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: test file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: file parameter: test new file parameter value
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test really undocumented parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: really undocumented parameter: turn off parameter
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: Simple gdb booleanparameter - python
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: show parameter off
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: show parameter on
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test general help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test set help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test show help
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: test undocumented parameter value is False
PASS -> UNRESOLVED: gdb.python/py-parameter.exp: undocumented parameter: turn off parameter
new UNRESOLVED: gdb.python/py-parameter.exp: verify python support
new UNRESOLVED: gdb.python/py-recurse-unwind.exp: import python scripts
new UNRESOLVED: gdb.python/py-value.exp: create boolean value
new FAIL: gdb.reverse/recvmsg-reverse.exp: continue to breakpoint: marker2
new FAIL: gdb.reverse/recvmsg-reverse.exp: reverse to marker1
new UNRESOLVED: gdb.reverse/recvmsg-reverse.exp: turn on process record
new UNRESOLVED: gdb.threads/attach-slow-waitpid.exp: attach to target
new UNRESOLVED: gdb.threads/tls-var.exp: delete all breakpoints in delete_breakpoints
new UNRESOLVED: gdb.xml/tdesc-arch.exp: architecture XML tests
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.table.gz>


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

* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
  2019-10-20  3:13 [binutils-gdb] gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout gdb-buildbot
  2019-10-20  3:13 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
  2019-10-20  4:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2019-10-20  5:17 ` gdb-buildbot
  2019-10-27 19:30 ` Failures on Fedora-i686, " gdb-buildbot
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-10-20  5:17 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-native-gdbserver-m64

Worker:
        ubuntu-aarch64

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/19/builds/954

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        9223170f68f85787b9cd85e76d3bac3eaa69cafb

Subject of commit:
        gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb/

*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.base/breakpoint-shadow.exp: start
new UNRESOLVED: gdb.linespec/keywords.exp: can't run to main
new UNRESOLVED: gdb.python/py-value.exp: can't run to main
new FAIL: gdb.reverse/watch-reverse.exp: continue to breakpoint: marker1
new FAIL: gdb.reverse/watch-reverse.exp: continue to breakpoint: marker2
new FAIL: gdb.reverse/watch-reverse.exp: replay forward to marker2
new FAIL: gdb.reverse/watch-reverse.exp: set forward
new FAIL: gdb.reverse/watch-reverse.exp: set reverse, first time
new FAIL: gdb.reverse/watch-reverse.exp: set reverse, second time
new UNRESOLVED: gdb.reverse/watch-reverse.exp: turn on process record
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, fifth time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, first time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, fourth time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, second time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, third time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, fifth time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, first time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, fourth time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, second time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, third time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, fifth time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, first time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, fifth time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, first time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, fourth time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, second time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, third time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, fourth time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, second time
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, third time
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.table.gz>


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

* Failures on Fedora-i686, branch master
  2019-10-20  3:13 [binutils-gdb] gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout gdb-buildbot
                   ` (2 preceding siblings ...)
  2019-10-20  5:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
@ 2019-10-27 19:30 ` gdb-buildbot
  2019-10-27 20:21 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-10-27 19:30 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/18/builds/1082

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        9223170f68f85787b9cd85e76d3bac3eaa69cafb

Subject of commit:
        gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-i686/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-i686/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.table.gz>


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

* Failures on Fedora-x86_64-m32, branch master
  2019-10-20  3:13 [binutils-gdb] gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout gdb-buildbot
                   ` (3 preceding siblings ...)
  2019-10-27 19:30 ` Failures on Fedora-i686, " gdb-buildbot
@ 2019-10-27 20:21 ` gdb-buildbot
  2019-10-27 21:17 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-10-27 20:21 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-m32

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/17/builds/1081

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        9223170f68f85787b9cd85e76d3bac3eaa69cafb

Subject of commit:
        gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-m32/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.cp/cpcompletion.exp: expression with namespace: cmd complete "p Test_NS:"
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-m32/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-m32/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master
  2019-10-20  3:13 [binutils-gdb] gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout gdb-buildbot
                   ` (4 preceding siblings ...)
  2019-10-27 20:21 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
@ 2019-10-27 21:17 ` gdb-buildbot
  2019-10-27 21:51 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-10-27 21:17 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-extended-gdbserver-m32

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/4/builds/1076

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        9223170f68f85787b9cd85e76d3bac3eaa69cafb

Subject of commit:
        gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m32/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m32/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m32/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.table.gz>


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

* Failures on Fedora-x86_64-m64, branch master
  2019-10-20  3:13 [binutils-gdb] gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout gdb-buildbot
                   ` (5 preceding siblings ...)
  2019-10-27 21:17 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
@ 2019-10-27 21:51 ` gdb-buildbot
  2019-10-27 22:13 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-10-27 21:51 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-m64

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/3/builds/1128

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        9223170f68f85787b9cd85e76d3bac3eaa69cafb

Subject of commit:
        gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-m64/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-m64/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-m64/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
  2019-10-20  3:13 [binutils-gdb] gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout gdb-buildbot
                   ` (6 preceding siblings ...)
  2019-10-27 21:51 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
@ 2019-10-27 22:13 ` gdb-buildbot
  2019-10-27 22:37 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
  2019-10-27 23:01 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-10-27 22:13 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-extended-gdbserver-m64

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/2/builds/1078

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        9223170f68f85787b9cd85e76d3bac3eaa69cafb

Subject of commit:
        gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m64/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb/

*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m64/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m64/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-gdbserver-m32, branch master
  2019-10-20  3:13 [binutils-gdb] gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout gdb-buildbot
                   ` (7 preceding siblings ...)
  2019-10-27 22:13 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2019-10-27 22:37 ` gdb-buildbot
  2019-10-27 23:01 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-10-27 22:37 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-gdbserver-m32

Worker:
        fedora-x86-64-2

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/24/builds/1073

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        9223170f68f85787b9cd85e76d3bac3eaa69cafb

Subject of commit:
        gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m32/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m32/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m32/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-gdbserver-m64, branch master
  2019-10-20  3:13 [binutils-gdb] gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout gdb-buildbot
                   ` (8 preceding siblings ...)
  2019-10-27 22:37 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
@ 2019-10-27 23:01 ` gdb-buildbot
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-10-27 23:01 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-gdbserver-m64

Worker:
        fedora-x86-64-1

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/22/builds/1076

Author:
        Simon Marchi <simon.marchi@polymtl.ca>

Commit tested:
        9223170f68f85787b9cd85e76d3bac3eaa69cafb

Subject of commit:
        gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m64/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb/

*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================

*** Complete list of XFAILs for this builder ***

To obtain the list of XFAIL tests for this builder, go to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m64/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.gz>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

        <https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m64/92/9223170f68f85787b9cd85e76d3bac3eaa69cafb//xfail.table.gz>


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

end of thread, other threads:[~2019-10-27 23:01 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-20  3:13 [binutils-gdb] gdb.mi/list-thread-groups-available.exp: read entries one by one instead of increasing timeout gdb-buildbot
2019-10-20  3:13 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
2019-10-20  4:39 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
2019-10-20  5:17 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
2019-10-27 19:30 ` Failures on Fedora-i686, " gdb-buildbot
2019-10-27 20:21 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
2019-10-27 21:17 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
2019-10-27 21:51 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
2019-10-27 22:13 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
2019-10-27 22:37 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
2019-10-27 23:01 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot

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).