public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Ubuntu-Aarch64-m64, branch master
  2019-12-18 19:36 [binutils-gdb] Fix indentation (and clang warning) in c-lang.c gdb-buildbot
@ 2019-12-18 19:24 ` gdb-buildbot
  2019-12-18 19:59 ` 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-12-18 19:24 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Ubuntu-Aarch64-m64

Worker:
        ubuntu-aarch64

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

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        e623f035020ea7baa64933b4afaaa564b4c7e26d

Subject of commit:
        Fix indentation (and clang warning) in c-lang.c

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

*** 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/Ubuntu-Aarch64-m64/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//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/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//xfail.table.gz>


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

* [binutils-gdb] Fix indentation (and clang warning) in c-lang.c
@ 2019-12-18 19:36 gdb-buildbot
  2019-12-18 19:24 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-18 19:36 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT e623f035020ea7baa64933b4afaaa564b4c7e26d ***

commit e623f035020ea7baa64933b4afaaa564b4c7e26d
Author:     Simon Marchi <simon.marchi@efficios.com>
AuthorDate: Wed Dec 18 13:27:18 2019 -0500
Commit:     Simon Marchi <simon.marchi@efficios.com>
CommitDate: Wed Dec 18 13:27:18 2019 -0500

    Fix indentation (and clang warning) in c-lang.c
    
    I see this warning when building with clang:
    
          CXX    c-lang.o
        /home/smarchi/src/binutils-gdb/gdb/c-lang.c:314:7: error: misleading indentation; statement is not part of the previous 'if' [-Werror,-Wmisleading-indentation]
              *length = i * width;
              ^
        /home/smarchi/src/binutils-gdb/gdb/c-lang.c:308:4: note: previous statement is here
                  if (extract_unsigned_integer (contents + i * width,
                  ^
    
    It took me a while to notice that some lines in that area have a
    spurious space before the tabs, at the beginning of the ling.  I'm not
    sure how clang translates that to misleading indentation, but making the
    indentation correct gets rid of the error.
    
    There are many more instances of this in the code base (`grep -P '^ \t'
    *.c`), if others think it's a good idea, it would be pretty easy to fix
    them all up in one shot.
    
    gdb/ChangeLog:
    
            * c-lang.c (c_get_string, asm_language_defn): Remove space
            before tab.

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 26d152b817..53885e13fc 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2019-12-18  Simon Marchi  <simon.marchi@efficios.com>
+
+	* c-lang.c (c_get_string, asm_language_defn): Remove space
+	before tab.
+
 2019-12-18  Tom Tromey  <tromey@adacore.com>
 
 	PR build/25250:
diff --git a/gdb/c-lang.c b/gdb/c-lang.c
index 846970af7b..1f40e885d9 100644
--- a/gdb/c-lang.c
+++ b/gdb/c-lang.c
@@ -303,14 +303,14 @@ c_get_string (struct value *value, gdb::unique_xmalloc_ptr<gdb_byte> *buffer,
       if (*length >= 0)
 	i  = *length;
       else
- 	/* Otherwise, look for a null character.  */
- 	for (i = 0; i < fetchlimit; i++)
+	/* Otherwise, look for a null character.  */
+	for (i = 0; i < fetchlimit; i++)
 	  if (extract_unsigned_integer (contents + i * width,
 					width, byte_order) == 0)
- 	    break;
+	    break;
   
       /* I is now either a user-defined length, the number of non-null
- 	 characters, or FETCHLIMIT.  */
+	 characters, or FETCHLIMIT.  */
       *length = i * width;
       buffer->reset ((gdb_byte *) xmalloc (*length));
       memcpy (buffer->get (), contents, *length);
@@ -1119,7 +1119,7 @@ extern const struct language_defn asm_language_defn =
   0,				/* String lower bound */
   default_word_break_characters,
   default_collect_symbol_completion_matches,
-  c_language_arch_info, 	/* FIXME: la_language_arch_info.  */
+  c_language_arch_info,		/* FIXME: la_language_arch_info.  */
   default_print_array_index,
   default_pass_by_reference,
   c_watch_location_expression,


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

* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
  2019-12-18 19:36 [binutils-gdb] Fix indentation (and clang warning) in c-lang.c gdb-buildbot
  2019-12-18 19:24 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
@ 2019-12-18 19:59 ` gdb-buildbot
  2019-12-20  8:23 ` Failures on Fedora-i686, " gdb-buildbot
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-18 19:59 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/1457

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        e623f035020ea7baa64933b4afaaa564b4c7e26d

Subject of commit:
        Fix indentation (and clang warning) in c-lang.c

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

*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> FAIL: gdb.threads/attach-stopped.exp: nonthreaded: attach2 to stopped bt
PASS -> UNRESOLVED: gdb.threads/attach-stopped.exp: nonthreaded: attach2 to stopped, after setting file
==============================================

*** 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/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//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/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//xfail.table.gz>


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

* Failures on Fedora-i686, branch master
  2019-12-18 19:36 [binutils-gdb] Fix indentation (and clang warning) in c-lang.c gdb-buildbot
  2019-12-18 19:24 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
  2019-12-18 19:59 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2019-12-20  8:23 ` gdb-buildbot
  2019-12-20  8:37 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-20  8:23 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-i686

Worker:
        fedora-x86-64-4

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

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        e623f035020ea7baa64933b4afaaa564b4c7e26d

Subject of commit:
        Fix indentation (and clang warning) in c-lang.c

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

*** 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-i686/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//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/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//xfail.table.gz>


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

* Failures on Fedora-x86_64-cc-with-index, branch master
  2019-12-18 19:36 [binutils-gdb] Fix indentation (and clang warning) in c-lang.c gdb-buildbot
                   ` (2 preceding siblings ...)
  2019-12-20  8:23 ` Failures on Fedora-i686, " gdb-buildbot
@ 2019-12-20  8:37 ` gdb-buildbot
  2019-12-20  8:41 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-20  8:37 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-cc-with-index

Worker:
        fedora-x86-64-3

Full Build URL:
	https://gdb-buildbot.osci.io/#builders/20/builds/1539

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        e623f035020ea7baa64933b4afaaa564b4c7e26d

Subject of commit:
        Fix indentation (and clang warning) in c-lang.c

Testsuite logs (gdb.sum, gdb.log and others):
        https://gdb-buildbot.osci.io/results/Fedora-x86_64-cc-with-index/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d/

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/skip.exp: step using -fu for baz: step 3
PASS -> FAIL: gdb.linespec/explicit.exp: complete non-unique label name: cmd complete "b -function myfunction -label "
PASS -> FAIL: gdb.linespec/explicit.exp: complete non-unique label name: tab complete "b -function myfunction -label "
PASS -> UNRESOLVED: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_setup: main stop
==============================================

*** 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-cc-with-index/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//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-cc-with-index/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//xfail.table.gz>


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

* Failures on Fedora-x86_64-m32, branch master
  2019-12-18 19:36 [binutils-gdb] Fix indentation (and clang warning) in c-lang.c gdb-buildbot
                   ` (3 preceding siblings ...)
  2019-12-20  8:37 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
@ 2019-12-20  8:41 ` gdb-buildbot
  2019-12-20  8:50 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-20  8:41 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-m32

Worker:
        fedora-x86-64-1

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

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        e623f035020ea7baa64933b4afaaa564b4c7e26d

Subject of commit:
        Fix indentation (and clang warning) in c-lang.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/skip.exp: step after disabling 3: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: skip delete
PASS -> FAIL: gdb.base/skip.exp: step using -fu for baz: step 5
new FAIL: gdb.base/skip.exp: step using -rfu for baz: info breakpoints
PASS -> UNRESOLVED: gdb.base/skip.exp: step using -rfu for baz: skip disable
PASS -> FAIL: gdb.base/skip.exp: step using -rfu for baz: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -rfu for baz: step 5
PASS -> FAIL: gdb.linespec/explicit.exp: complete with no arguments and no symbols: cmd complete "b "
PASS -> FAIL: gdb.linespec/explicit.exp: complete with no arguments and no symbols: tab complete "b "
==============================================

*** 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/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//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/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//xfail.table.gz>


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

* Failures on Fedora-x86_64-m64, branch master
  2019-12-18 19:36 [binutils-gdb] Fix indentation (and clang warning) in c-lang.c gdb-buildbot
                   ` (4 preceding siblings ...)
  2019-12-20  8:41 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
@ 2019-12-20  8:50 ` gdb-buildbot
  2019-12-20  8:52 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-20  8:50 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/1652

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        e623f035020ea7baa64933b4afaaa564b4c7e26d

Subject of commit:
        Fix indentation (and clang warning) in c-lang.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/skip.exp: step using -fu for baz: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -fu for baz: step 5
new FAIL: gdb.base/skip.exp: step using -rfu for baz: info breakpoints
PASS -> UNRESOLVED: gdb.base/skip.exp: step using -rfu for baz: skip disable
PASS -> FAIL: gdb.base/skip.exp: step using -rfu for baz: step 3
new KFAIL: gdb.base/step-over-syscall.exp: clone: displaced=on: single step over clone
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 2nd thread: print k
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 2nd thread: print r
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 2nd thread: print z
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print i
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print j
==============================================

*** 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/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//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/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch master
  2019-12-18 19:36 [binutils-gdb] Fix indentation (and clang warning) in c-lang.c gdb-buildbot
                   ` (5 preceding siblings ...)
  2019-12-20  8:50 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
@ 2019-12-20  8:52 ` gdb-buildbot
  2019-12-20  9:27 ` 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-12-20  8:52 UTC (permalink / raw)
  To: gdb-testers

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

Worker:
        fedora-x86-64-4

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

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        e623f035020ea7baa64933b4afaaa564b4c7e26d

Subject of commit:
        Fix indentation (and clang warning) in c-lang.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/skip.exp: step using -fu for baz: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -fu for baz: step 5
new FAIL: gdb.base/skip.exp: step using -rfu for baz: info breakpoints
PASS -> UNRESOLVED: gdb.base/skip.exp: step using -rfu for baz: skip disable
PASS -> FAIL: gdb.trace/mi-tsv-changed.exp: create delete modify: tvariable $tvar3 modified
==============================================

*** 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/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//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/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
  2019-12-18 19:36 [binutils-gdb] Fix indentation (and clang warning) in c-lang.c gdb-buildbot
                   ` (6 preceding siblings ...)
  2019-12-20  8:52 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
@ 2019-12-20  9:27 ` gdb-buildbot
  2019-12-20  9:37 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
  2019-12-20 10:03 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-20  9:27 UTC (permalink / raw)
  To: gdb-testers

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

Worker:
        fedora-x86-64-3

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

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        e623f035020ea7baa64933b4afaaa564b4c7e26d

Subject of commit:
        Fix indentation (and clang warning) in c-lang.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/skip.exp: step after disabling 3: step 3
PASS -> FAIL: gdb.base/skip.exp: step after disabling 3: step 5
PASS -> FAIL: gdb.base/skip.exp: step after enable 3: info skip shows entry as enabled
PASS -> FAIL: gdb.base/skip.exp: step using -rfu for baz: step 3
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i02
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i12
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i22
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print i
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print j
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/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//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/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-gdbserver-m32, branch master
  2019-12-18 19:36 [binutils-gdb] Fix indentation (and clang warning) in c-lang.c gdb-buildbot
                   ` (7 preceding siblings ...)
  2019-12-20  9:27 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2019-12-20  9:37 ` gdb-buildbot
  2019-12-20 10:03 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-20  9:37 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-gdbserver-m32

Worker:
        fedora-x86-64-1

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

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        e623f035020ea7baa64933b4afaaa564b4c7e26d

Subject of commit:
        Fix indentation (and clang warning) in c-lang.c

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

*** Diff to previous build ***
==============================================
new FAIL: gdb.base/skip.exp: step using -rfu for baz: info breakpoints
PASS -> UNRESOLVED: gdb.base/skip.exp: step using -rfu for baz: skip disable
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-gdbserver-m32/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//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/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//xfail.table.gz>


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

* Failures on Fedora-x86_64-native-gdbserver-m64, branch master
  2019-12-18 19:36 [binutils-gdb] Fix indentation (and clang warning) in c-lang.c gdb-buildbot
                   ` (8 preceding siblings ...)
  2019-12-20  9:37 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
@ 2019-12-20 10:03 ` gdb-buildbot
  9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2019-12-20 10:03 UTC (permalink / raw)
  To: gdb-testers

Buildername:
        Fedora-x86_64-native-gdbserver-m64

Worker:
        fedora-x86-64-2

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

Author:
        Simon Marchi <simon.marchi@efficios.com>

Commit tested:
        e623f035020ea7baa64933b4afaaa564b4c7e26d

Subject of commit:
        Fix indentation (and clang warning) in c-lang.c

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

*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "frame apply 1 print "
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "frame apply 1 print "
PASS -> FAIL: gdb.base/skip.exp: step after disabling 3: step 3
PASS -> FAIL: gdb.base/skip.exp: step after disabling 3: step 5
new FAIL: gdb.base/skip.exp: step using -fi + -fu: info breakpoints
PASS -> UNRESOLVED: gdb.base/skip.exp: step using -fi + -fu: skip -fi skip1.c -fu test_skip
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: skip delete
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 1
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 2
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -fi + -fu: step 5
PASS -> FAIL: gdb.base/skip.exp: step using -fu for baz: step 3
PASS -> FAIL: gdb.base/skip.exp: step using -fu for baz: step 5
new FAIL: gdb.base/skip.exp: step using -rfu for baz: info breakpoints
PASS -> UNRESOLVED: gdb.base/skip.exp: step using -rfu for baz: skip disable
PASS -> FAIL: gdb.base/skip.exp: step using -rfu for baz: step 5
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print i
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 4th stop: print j
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print i
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: outer_threads: outer stop: print j
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-gdbserver-m64/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//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/e6/e623f035020ea7baa64933b4afaaa564b4c7e26d//xfail.table.gz>


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

end of thread, other threads:[~2019-12-20  9:38 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-18 19:36 [binutils-gdb] Fix indentation (and clang warning) in c-lang.c gdb-buildbot
2019-12-18 19:24 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
2019-12-18 19:59 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
2019-12-20  8:23 ` Failures on Fedora-i686, " gdb-buildbot
2019-12-20  8:37 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
2019-12-20  8:41 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
2019-12-20  8:50 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
2019-12-20  8:52 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " gdb-buildbot
2019-12-20  9:27 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
2019-12-20  9:37 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
2019-12-20 10:03 ` 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).