public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Fedora-s390x-m64, branch master
  2017-05-19 14:05 [binutils-gdb] Fix tui compilation with Solaris libcurses: clear define (PR tui/21482) sergiodj+buildbot
@ 2017-05-19 14:05 ` sergiodj+buildbot
  2017-05-19 16:37 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: sergiodj+buildbot @ 2017-05-19 14:05 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	marist-fedora-s390x

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-s390x-m64/builds/5357>

Commit(s) tested:
	6e7e1744e96abbf1a4229d5f269caf2cc921ec58

Author(s) (in the same order as the commits):
	Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>

Subject:
	Fix tui compilation with Solaris libcurses: clear define (PR tui/21482)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-s390x-m64/6e/6e7e1744e96abbf1a4229d5f269caf2cc921ec58/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/interrupt.exp: continue
new FAIL: gdb.base/interrupt.exp: Send Control-C, second time
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=2: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=7: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=8: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=9: wait for stops
============================


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

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

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-s390x-m64/xfails/master/xfail;hb=474b075>

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

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-s390x-m64/xfails/master/xfail.table;hb=474b075>




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

* [binutils-gdb] Fix tui compilation with Solaris libcurses: clear define (PR tui/21482)
@ 2017-05-19 14:05 sergiodj+buildbot
  2017-05-19 14:05 ` Failures on Fedora-s390x-m64, branch master sergiodj+buildbot
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: sergiodj+buildbot @ 2017-05-19 14:05 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 6e7e1744e96abbf1a4229d5f269caf2cc921ec58 ***

Author: Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
Branch: master
Commit: 6e7e1744e96abbf1a4229d5f269caf2cc921ec58

Fix tui compilation with Solaris libcurses: clear define (PR tui/21482)

On both mainline and the 8.0 branch, gdb compilation fails on Solaris 10
with the native libcurses like this:

In file included from /vol/src/gnu/gdb/gdb-8.0-branch/local/gdb/gdb_curses.h:42:
0,
                 from /vol/src/gnu/gdb/gdb-8.0-branch/local/gdb/tui/tui-data.h:2
6,
                 from /vol/src/gnu/gdb/gdb-8.0-branch/local/gdb/tui/tui-disasm.c
:31:
/vol/src/gnu/gdb/gdb-8.0-branch/local/gdb/tui/tui-disasm.c: In function `CORE_A
DDR tui_disassemble(gdbarch*, tui_asm_line*, CORE_ADDR, int)':
/vol/src/gnu/gdb/gdb-8.0-branch/local/gdb/tui/tui-disasm.c:71:19: error: `class
 string_file' has no member named `wclear'; did you mean `clear'?
       gdb_dis_out.clear ();
                   ^
/vol/src/gnu/gdb/gdb-8.0-branch/local/gdb/tui/tui-disasm.c:78:19: error: `class
 string_file' has no member named `wclear'; did you mean `clear'?
       gdb_dis_out.clear ();
                   ^
make[2]: *** [Makefile:1927: tui-disasm.o] Error 1

It turned out this happens because <curses.h> has

#define clear()         wclear(stdscr)

This can be avoided by defining NOMACROS, which the patch below does.
ncurses potentially has a similar problem, which can be avoided by defining
NCURSES_NOMACROS.

	PR tui/21482
	* gdb_curses.h (NOMACROS): Define.
	(NCURSES_NOMACROS): Define.


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

* Failures on Ubuntu-AArch64-native-gdbserver-m64, branch master
  2017-05-19 14:05 [binutils-gdb] Fix tui compilation with Solaris libcurses: clear define (PR tui/21482) sergiodj+buildbot
  2017-05-19 14:05 ` Failures on Fedora-s390x-m64, branch master sergiodj+buildbot
@ 2017-05-19 16:37 ` sergiodj+buildbot
  2017-05-19 17:04 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: sergiodj+buildbot @ 2017-05-19 16:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu-aarch64-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch64-native-gdbserver-m64/builds/2000>

Commit(s) tested:
	6e7e1744e96abbf1a4229d5f269caf2cc921ec58

Author(s) (in the same order as the commits):
	Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>

Subject:
	Fix tui compilation with Solaris libcurses: clear define (PR tui/21482)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-AArch64-native-gdbserver-m64/6e/6e7e1744e96abbf1a4229d5f269caf2cc921ec58/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=9: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=12: wait for stops
============================


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

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

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch64-native-gdbserver-m64/xfails/master/xfail;hb=84d1683>

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

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch64-native-gdbserver-m64/xfails/master/xfail.table;hb=84d1683>




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

* Failures on Ubuntu-AArch64-m64, branch master
  2017-05-19 14:05 [binutils-gdb] Fix tui compilation with Solaris libcurses: clear define (PR tui/21482) sergiodj+buildbot
  2017-05-19 14:05 ` Failures on Fedora-s390x-m64, branch master sergiodj+buildbot
  2017-05-19 16:37 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
@ 2017-05-19 17:04 ` sergiodj+buildbot
  2017-05-19 19:28 ` Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj+buildbot
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: sergiodj+buildbot @ 2017-05-19 17:04 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu-aarch64-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch64-m64/builds/2010>

Commit(s) tested:
	6e7e1744e96abbf1a4229d5f269caf2cc921ec58

Author(s) (in the same order as the commits):
	Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>

Subject:
	Fix tui compilation with Solaris libcurses: clear define (PR tui/21482)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-AArch64-m64/6e/6e7e1744e96abbf1a4229d5f269caf2cc921ec58/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=13: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=14: wait for stops
============================


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

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

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch64-m64/xfails/master/xfail;hb=abee8a4>

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

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Ubuntu-AArch64-m64/xfails/master/xfail.table;hb=abee8a4>




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

* Failures on Fedora-x86_64-native-gdbserver-m32, branch master
  2017-05-19 14:05 [binutils-gdb] Fix tui compilation with Solaris libcurses: clear define (PR tui/21482) sergiodj+buildbot
                   ` (2 preceding siblings ...)
  2017-05-19 17:04 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
@ 2017-05-19 19:28 ` sergiodj+buildbot
  2017-05-19 19:37 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: sergiodj+buildbot @ 2017-05-19 19:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6148>

Commit(s) tested:
	6e7e1744e96abbf1a4229d5f269caf2cc921ec58

Author(s) (in the same order as the commits):
	Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>

Subject:
	Fix tui compilation with Solaris libcurses: clear define (PR tui/21482)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/6e/6e7e1744e96abbf1a4229d5f269caf2cc921ec58/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/new-ui-mi-sync.exp: sync-command=run: interrupt on the CLI
============================


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

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

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-gdbserver-m32/xfails/master/xfail;hb=8206d8d>

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

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-gdbserver-m32/xfails/master/xfail.table;hb=8206d8d>




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
  2017-05-19 14:05 [binutils-gdb] Fix tui compilation with Solaris libcurses: clear define (PR tui/21482) sergiodj+buildbot
                   ` (3 preceding siblings ...)
  2017-05-19 19:28 ` Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj+buildbot
@ 2017-05-19 19:37 ` sergiodj+buildbot
  2017-05-19 23:50 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " sergiodj+buildbot
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: sergiodj+buildbot @ 2017-05-19 19:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-extended-gdbserver-m64/builds/6180>

Commit(s) tested:
	6e7e1744e96abbf1a4229d5f269caf2cc921ec58

Author(s) (in the same order as the commits):
	Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>

Subject:
	Fix tui compilation with Solaris libcurses: clear define (PR tui/21482)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/6e/6e7e1744e96abbf1a4229d5f269caf2cc921ec58/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
============================


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

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

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-extended-gdbserver-m64/xfails/master/xfail;hb=4eb872a>

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

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-native-extended-gdbserver-m64/xfails/master/xfail.table;hb=4eb872a>




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

* Failures on Ubuntu-AArch32-native-gdbserver-m32, branch master
  2017-05-19 14:05 [binutils-gdb] Fix tui compilation with Solaris libcurses: clear define (PR tui/21482) sergiodj+buildbot
                   ` (4 preceding siblings ...)
  2017-05-19 19:37 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2017-05-19 23:50 ` sergiodj+buildbot
  2017-05-20  0:32 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
  2017-05-20  1:14 ` Failures on Ubuntu-AArch32-m32, " sergiodj+buildbot
  7 siblings, 0 replies; 9+ messages in thread
From: sergiodj+buildbot @ 2017-05-19 23:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu-trusty-aarch32-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-native-gdbserver-m32/builds/626>

Commit(s) tested:
	6e7e1744e96abbf1a4229d5f269caf2cc921ec58

Author(s) (in the same order as the commits):
	Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>

Subject:
	Fix tui compilation with Solaris libcurses: clear define (PR tui/21482)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-native-gdbserver-m32/6e/6e7e1744e96abbf1a4229d5f269caf2cc921ec58/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:250
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=5: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=6: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=11: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=15: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=18: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=19: wait for stops
============================


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

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




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

* Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, branch master
  2017-05-19 14:05 [binutils-gdb] Fix tui compilation with Solaris libcurses: clear define (PR tui/21482) sergiodj+buildbot
                   ` (5 preceding siblings ...)
  2017-05-19 23:50 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " sergiodj+buildbot
@ 2017-05-20  0:32 ` sergiodj+buildbot
  2017-05-20  1:14 ` Failures on Ubuntu-AArch32-m32, " sergiodj+buildbot
  7 siblings, 0 replies; 9+ messages in thread
From: sergiodj+buildbot @ 2017-05-20  0:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu-trusty-aarch32-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-native-extended-gdbserver-m32/builds/634>

Commit(s) tested:
	6e7e1744e96abbf1a4229d5f269caf2cc921ec58

Author(s) (in the same order as the commits):
	Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>

Subject:
	Fix tui compilation with Solaris libcurses: clear define (PR tui/21482)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-native-extended-gdbserver-m32/6e/6e7e1744e96abbf1a4229d5f269caf2cc921ec58/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=4: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=6: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=8: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=9: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=14: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=16: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=18: wait for stops
PASS -> FAIL: gdb.threads/pthreads.exp: check backtrace from main thread
============================


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

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




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

* Failures on Ubuntu-AArch32-m32, branch master
  2017-05-19 14:05 [binutils-gdb] Fix tui compilation with Solaris libcurses: clear define (PR tui/21482) sergiodj+buildbot
                   ` (6 preceding siblings ...)
  2017-05-20  0:32 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
@ 2017-05-20  1:14 ` sergiodj+buildbot
  7 siblings, 0 replies; 9+ messages in thread
From: sergiodj+buildbot @ 2017-05-20  1:14 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu-trusty-aarch32-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/634>

Commit(s) tested:
	6e7e1744e96abbf1a4229d5f269caf2cc921ec58

Author(s) (in the same order as the commits):
	Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>

Subject:
	Fix tui compilation with Solaris libcurses: clear define (PR tui/21482)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/6e/6e7e1744e96abbf1a4229d5f269caf2cc921ec58/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=5: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=13: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=14: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=17: wait for stops
new FAIL: gdb.threads/queue-signal.exp: determine thread functions
============================


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

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




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

end of thread, other threads:[~2017-05-20  1:14 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-05-19 14:05 [binutils-gdb] Fix tui compilation with Solaris libcurses: clear define (PR tui/21482) sergiodj+buildbot
2017-05-19 14:05 ` Failures on Fedora-s390x-m64, branch master sergiodj+buildbot
2017-05-19 16:37 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
2017-05-19 17:04 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
2017-05-19 19:28 ` Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj+buildbot
2017-05-19 19:37 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
2017-05-19 23:50 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " sergiodj+buildbot
2017-05-20  0:32 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
2017-05-20  1:14 ` Failures on Ubuntu-AArch32-m32, " sergiodj+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).