From: Chris Moller <cmoller@redhat.com>
To: gdb-patches@sourceware.org
Subject: Patch for PR 9399
Date: Wed, 09 Dec 2009 13:32:00 -0000 [thread overview]
Message-ID: <4B1FA6F2.1060105@redhat.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 2266 bytes --]
The attached stuff is a patch for PR9399:
http://sourceware.org/bugzilla/show_bug.cgi?id=9399 "gdb can't call or
print a const function that uses virtual inheritance"
The bug was in valops.c:value_cast_structs() which could do spurious
upcasts or downcasts. The fix tests whether any casts at all are
necessary and, if not, returns a NULL.
The patch hits two ChangeLogs, one for the fix, in .../gdb/ChangeLog,
the other for the testcase in gdb/testsuite/ChangeLog. Respectively,
they are:
2009-12-08 Chris Moller <cmoller@redhat.com>
PR gdb/9399
* valops.c (value_cast_structs): Added test to return NULL if no
casting needed.
2009-12-08 Chris Moller <cmoller@redhat.com>
PR gdb/9399
* gdb.cp/virtfunc2.exp:
* gdb.cp/virtfunc2.cc: New tests for a patch to fix PR gd/9399
* gdb.cp/Makefile.in: Added tests to EXECUTABLES
(These are both included in the attached patch file.)
The patch file includes the patch to gdb/valops.c, gdb/ChangeLog,
gdb/testsuite/ChangeLog, gdb/testsuite/gdb.cp/Makefile.in, and
mc-log.diffs. (The patch to Makefile.in is to incorporate the testcase
for 'make check'; mc-log.diffs are the diffs between before and after
runs of 'make check') I can't do a 'cvs add' so the the testcase
expects and .cc file are attached separately as
gdb/testsuite/gdb.cp/virtfunc2.cc and gdb/testsuite/gdb.cp/virtfunc2.exp.
You can see what the patch does by compiling -g virtfunc.cc, gdb-ing it,
breaking in the return stmt at // marker1, and doing things like "print
o.do_print()". Without the patch, gdb tries to access location 0x0;
with the patch it does the right thing. (There are more tests in
virtfunc2.exp)
I've included the diff between the before and after 'make check' logs.
I don't think the patch breaks anything--most of the diffs are with
respect to the different directories used for before and after builds.
Starting at line 131 in mc-log.diffs, you can see the new tests,
virtfunc2, and, following that, the six new expected passes.
I've assigned that bug to myself. If you're happy with the patch, let
me know and I'll close the bug. (Or do whatever you usually do...)
Have fun,
Chris Moller
Red Hat
[-- Attachment #2: pr9399.patch --]
[-- Type: text/plain, Size: 3626 bytes --]
? gdb/testsuite/gdb.cp/virtfunc2.cc
? gdb/testsuite/gdb.cp/virtfunc2.exp
Index: gdb/ChangeLog
===================================================================
RCS file: /cvs/src/src/gdb/ChangeLog,v
retrieving revision 1.10874.2.54
diff -c -p -r1.10874.2.54 ChangeLog
*** gdb/ChangeLog 24 Nov 2009 17:23:03 -0000 1.10874.2.54
--- gdb/ChangeLog 9 Dec 2009 13:00:50 -0000
***************
*** 1,3 ****
--- 1,9 ----
+ 2009-12-08 Chris Moller <cmoller@redhat.com>
+
+ PR gdb/9399
+ * valops.c (value_cast_structs): Added test to return NULL if no
+ casting needed.
+
2009-11-23 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* dwarf2read.c [HAVE_MMAP] (MAP_FAILED): Define if missing.
Index: gdb/valops.c
===================================================================
RCS file: /cvs/src/src/gdb/valops.c,v
retrieving revision 1.225.2.1
diff -c -p -r1.225.2.1 valops.c
*** gdb/valops.c 29 Sep 2009 00:41:24 -0000 1.225.2.1
--- gdb/valops.c 9 Dec 2009 13:00:52 -0000
*************** value_cast_structs (struct type *type, s
*** 232,237 ****
--- 232,246 ----
|| TYPE_CODE (t2) == TYPE_CODE_UNION)
&& !!"Precondition is that value is of STRUCT or UNION kind");
+ /* Check to see if any kind of cast is necessary; if not, punt.
+ (Specifically not using strcmp_iw() because no other comparisons against
+ TYPE_NAME() use it. They all use standard strcmp() instead.) */
+
+ if ((TYPE_NAME (t1) != NULL) &&
+ (TYPE_NAME (t2) != NULL) &&
+ !strcmp (TYPE_NAME (t1), TYPE_NAME (t2)))
+ return NULL;
+
/* Upcasting: look in the type of the source to see if it contains the
type of the target as a superclass. If so, we'll need to
offset the pointer rather than just change its type. */
Index: gdb/testsuite/ChangeLog
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/ChangeLog,v
retrieving revision 1.1960.2.11
diff -c -p -r1.1960.2.11 ChangeLog
*** gdb/testsuite/ChangeLog 29 Sep 2009 19:27:16 -0000 1.1960.2.11
--- gdb/testsuite/ChangeLog 9 Dec 2009 13:01:07 -0000
***************
*** 1,3 ****
--- 1,10 ----
+ 2009-12-08 Chris Moller <cmoller@redhat.com>
+
+ PR gdb/9399
+ * gdb.cp/virtfunc2.exp:
+ * gdb.cp/virtfunc2.cc: New tests for a patch to fix PR gd/9399
+ * gdb.cp/Makefile.in: Added tests to EXECUTABLES
+
2009-09-29 Jan Kratochvil <jan.kratochvil@redhat.com>
* gdb.base/breakpoint-shadow.exp: Move the ia64 part into ...
Index: gdb/testsuite/gdb.cp/Makefile.in
===================================================================
RCS file: /cvs/src/src/gdb/testsuite/gdb.cp/Makefile.in,v
retrieving revision 1.6
diff -c -p -r1.6 Makefile.in
*** gdb/testsuite/gdb.cp/Makefile.in 15 Jun 2009 12:11:37 -0000 1.6
--- gdb/testsuite/gdb.cp/Makefile.in 9 Dec 2009 13:01:09 -0000
*************** srcdir = @srcdir@
*** 4,10 ****
EXECUTABLES = ambiguous annota2 anon-union cplusfuncs cttiadd \
derivation inherit local member-ptr method misc \
overload ovldbreak ref-typ ref-typ2 templates userdef virtfunc namespace \
! ref-types ref-params method2 pr9594 gdb2495
all info install-info dvi install uninstall installcheck check:
@echo "Nothing to be done for $@..."
--- 4,10 ----
EXECUTABLES = ambiguous annota2 anon-union cplusfuncs cttiadd \
derivation inherit local member-ptr method misc \
overload ovldbreak ref-typ ref-typ2 templates userdef virtfunc namespace \
! ref-types ref-params method2 pr9594 gdb2495 virtfunc2
all info install-info dvi install uninstall installcheck check:
@echo "Nothing to be done for $@..."
[-- Attachment #3: virtfunc2.cc --]
[-- Type: text/x-c++src, Size: 1173 bytes --]
/* This test script is part of GDB, the GNU debugger.
Copyright 1993, 1994, 1997, 1998, 1999, 2003, 2004, 2009
Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
class interface
{
virtual const int do_print3() const { return 111111; }
};
class Obj : virtual public interface
{
public:
virtual const int do_print() const { return 123456; }
};
class Obj2 : Obj, virtual public interface
{
virtual const int do_print2() const { return 654321; }
};
int main(int argc, char** argv) {
Obj o;
Obj2 o2;
return 0; // marker 1
}
[-- Attachment #4: virtfunc2.exp --]
[-- Type: text/plain, Size: 1766 bytes --]
# Copyright 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2001, 2002, 2003, 2004,
# 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# This file was written by Chris Moller <moller@redhat.com> based on
# virtfunc.exp
set nl "\[\r\n\]+"
if { [skip_cplus_tests] } { continue }
load_lib "cp-support.exp"
set testfile "virtfunc2"
set srcfile ${testfile}.cc
set binfile ${objdir}/${subdir}/${testfile}
if { [gdb_compile "${srcdir}/${subdir}/${srcfile}" "${binfile}" executable {c++ debug}] != "" } {
untested virtfunc2.exp
return -1
}
gdb_exit
gdb_start
gdb_reinitialize_dir $srcdir/$subdir
gdb_load ${binfile}
if ![runto_main] then {
perror "couldn't run to breakpoint"
continue
}
# set a breakpoint at the return stmt
gdb_breakpoint [gdb_get_line_number "marker 1"]
gdb_continue_to_breakpoint "marker 1"
gdb_test "print o.do_print()" "\\$\[0-9\]+ = 123456"
gdb_test "print o.do_print3()" "\\$\[0-9\]+ = 111111"
gdb_test "print o2.do_print()" "\\$\[0-9\]+ = 123456"
gdb_test "print o2.do_print2()" "\\$\[0-9\]+ = 654321"
gdb_test "print o2.do_print3()" "\\$\[0-9\]+ = 111111"
gdb_exit
return 0
[-- Attachment #5: mc-log.diffs --]
[-- Type: text/plain, Size: 13348 bytes --]
1,2c1,61
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite
< make[1]: Entering directory `/home/moller/tinkering/fsfgdb/build/gdb/testsuite'
---
> make[1]: Entering directory `/home/moller/tinkering/fsfgdb/build2'
> make[2]: Entering directory `/home/moller/tinkering/fsfgdb/build2/bfd'
> make check-recursive
> make[3]: Entering directory `/home/moller/tinkering/fsfgdb/build2/bfd'
> Making check in doc
> make[4]: Entering directory `/home/moller/tinkering/fsfgdb/build2/bfd/doc'
> make[4]: Nothing to be done for `check'.
> make[4]: Leaving directory `/home/moller/tinkering/fsfgdb/build2/bfd/doc'
> Making check in po
> make[4]: Entering directory `/home/moller/tinkering/fsfgdb/build2/bfd/po'
> make[4]: Nothing to be done for `check'.
> make[4]: Leaving directory `/home/moller/tinkering/fsfgdb/build2/bfd/po'
> make[4]: Entering directory `/home/moller/tinkering/fsfgdb/build2/bfd'
> make[4]: Leaving directory `/home/moller/tinkering/fsfgdb/build2/bfd'
> make[3]: Leaving directory `/home/moller/tinkering/fsfgdb/build2/bfd'
> make[2]: Leaving directory `/home/moller/tinkering/fsfgdb/build2/bfd'
> make[2]: Entering directory `/home/moller/tinkering/fsfgdb/build2/opcodes'
> Making check in .
> make[3]: Entering directory `/home/moller/tinkering/fsfgdb/build2/opcodes'
> make[3]: Leaving directory `/home/moller/tinkering/fsfgdb/build2/opcodes'
> Making check in po
> make[3]: Entering directory `/home/moller/tinkering/fsfgdb/build2/opcodes/po'
> make[3]: Nothing to be done for `check'.
> make[3]: Leaving directory `/home/moller/tinkering/fsfgdb/build2/opcodes/po'
> make[2]: Leaving directory `/home/moller/tinkering/fsfgdb/build2/opcodes'
> make[2]: Entering directory `/home/moller/tinkering/fsfgdb/build2/etc'
> make[2]: Nothing to be done for `check'.
> make[2]: Leaving directory `/home/moller/tinkering/fsfgdb/build2/etc'
> make[2]: Entering directory `/home/moller/tinkering/fsfgdb/build2/intl'
> make[2]: Nothing to be done for `check'.
> make[2]: Leaving directory `/home/moller/tinkering/fsfgdb/build2/intl'
> make[2]: Entering directory `/home/moller/tinkering/fsfgdb/build2/libdecnumber'
> make[2]: Nothing to be done for `check'.
> make[2]: Leaving directory `/home/moller/tinkering/fsfgdb/build2/libdecnumber'
> make[2]: Entering directory `/home/moller/tinkering/fsfgdb/build2/libiberty'
> /home/moller/tinkering/fsfgdb/build2/libiberty/testsuite
> make[3]: Entering directory `/home/moller/tinkering/fsfgdb/build2/libiberty/testsuite'
> gcc -DHAVE_CONFIG_H -g -O2 -I.. -I../../../src/libiberty/testsuite/../../include -o test-demangle \
> ../../../src/libiberty/testsuite/test-demangle.c ../libiberty.a
> ./test-demangle < ../../../src/libiberty/testsuite/demangle-expected
> ./test-demangle: 777 tests, 0 failures
> gcc -DHAVE_CONFIG_H -g -O2 -I.. -I../../../src/libiberty/testsuite/../../include -DHAVE_CONFIG_H -I.. -o test-pexecute \
> ../../../src/libiberty/testsuite/test-pexecute.c ../libiberty.a
> ./test-pexecute
> gcc -DHAVE_CONFIG_H -g -O2 -I.. -I../../../src/libiberty/testsuite/../../include -DHAVE_CONFIG_H -I.. -o test-expandargv \
> ../../../src/libiberty/testsuite/test-expandargv.c ../libiberty.a
> ./test-expandargv
> PASS: test-expandargv-0.
> PASS: test-expandargv-1.
> PASS: test-expandargv-2.
> PASS: test-expandargv-3.
> make[3]: Leaving directory `/home/moller/tinkering/fsfgdb/build2/libiberty/testsuite'
> make[2]: Leaving directory `/home/moller/tinkering/fsfgdb/build2/libiberty'
> make[2]: Entering directory `/home/moller/tinkering/fsfgdb/build2/readline'
> make[2]: Nothing to be done for `check'.
> make[2]: Leaving directory `/home/moller/tinkering/fsfgdb/build2/readline'
> make[2]: Entering directory `/home/moller/tinkering/fsfgdb/build2/sim'
> make[2]: Leaving directory `/home/moller/tinkering/fsfgdb/build2/sim'
> make[2]: Entering directory `/home/moller/tinkering/fsfgdb/build2/gdb'
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite
> make[3]: Entering directory `/home/moller/tinkering/fsfgdb/build2/gdb/testsuite'
8c67
< make[2]: Entering directory `/home/moller/tinkering/fsfgdb/build/gdb/testsuite'
---
> make[4]: Entering directory `/home/moller/tinkering/fsfgdb/build2/gdb/testsuite'
13c72
< Test Run By moller on Tue Dec 8 19:39:15 2009
---
> Test Run By moller on Tue Dec 8 21:11:50 2009
145c204
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
147c206
< make[2]: *** [check-gdb.base1] Error 1
---
> make[4]: *** [check-gdb.base1] Error 1
150c209
< Test Run By moller on Tue Dec 8 19:40:53 2009
---
> Test Run By moller on Tue Dec 8 21:13:29 2009
262c321
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
264c323
< make[2]: *** [check-gdb.base2] Error 1
---
> make[4]: *** [check-gdb.base2] Error 1
267c326
< Test Run By moller on Tue Dec 8 19:42:19 2009
---
> Test Run By moller on Tue Dec 8 21:14:56 2009
333c392
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
337c396
< Test Run By moller on Tue Dec 8 19:42:20 2009
---
> Test Run By moller on Tue Dec 8 21:14:56 2009
387c446
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
391c450
< Test Run By moller on Tue Dec 8 19:42:22 2009
---
> Test Run By moller on Tue Dec 8 21:14:58 2009
408c467
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
412c471
< Test Run By moller on Tue Dec 8 19:42:22 2009
---
> Test Run By moller on Tue Dec 8 21:14:59 2009
443c502
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
447c506
< Test Run By moller on Tue Dec 8 19:42:23 2009
---
> Test Run By moller on Tue Dec 8 21:14:59 2009
528a588
> Running ../../../src/gdb/testsuite/gdb.cp/virtfunc2.exp ...
532c592
< # of expected passes 2003
---
> # of expected passes 2009
535c595
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
537c597
< make[2]: *** [check-gdb.cp] Error 1
---
> make[4]: *** [check-gdb.cp] Error 1
540c600
< Test Run By moller on Tue Dec 8 19:42:50 2009
---
> Test Run By moller on Tue Dec 8 21:15:27 2009
573c633
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
577c637
< Test Run By moller on Tue Dec 8 19:42:50 2009
---
> Test Run By moller on Tue Dec 8 21:15:27 2009
612c672
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
616c676
< Test Run By moller on Tue Dec 8 19:42:52 2009
---
> Test Run By moller on Tue Dec 8 21:15:30 2009
640c700
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
644c704
< Test Run By moller on Tue Dec 8 19:42:53 2009
---
> Test Run By moller on Tue Dec 8 21:15:30 2009
664c724
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
668c728
< Test Run By moller on Tue Dec 8 19:42:55 2009
---
> Test Run By moller on Tue Dec 8 21:15:32 2009
690c750
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
694c754
< Test Run By moller on Tue Dec 8 19:42:56 2009
---
> Test Run By moller on Tue Dec 8 21:15:33 2009
725d784
< FAIL: gdb.mi/mi-nsmoribund.exp: unexpected stop
770,771c829
< # of expected passes 1575
< # of unexpected failures 1
---
> # of expected passes 1576
775c833
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
777d834
< make[2]: *** [check-gdb.mi] Error 1
780c837
< Test Run By moller on Tue Dec 8 19:43:26 2009
---
> Test Run By moller on Tue Dec 8 21:16:03 2009
797c854
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
801c858
< Test Run By moller on Tue Dec 8 19:43:26 2009
---
> Test Run By moller on Tue Dec 8 21:16:04 2009
820c877
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
824c881
< Test Run By moller on Tue Dec 8 19:43:27 2009
---
> Test Run By moller on Tue Dec 8 21:16:04 2009
846c903
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
850c907
< Test Run By moller on Tue Dec 8 19:43:28 2009
---
> Test Run By moller on Tue Dec 8 21:16:06 2009
872c929
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
876c933
< Test Run By moller on Tue Dec 8 19:43:28 2009
---
> Test Run By moller on Tue Dec 8 21:16:06 2009
900c957
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
904c961
< Test Run By moller on Tue Dec 8 19:43:33 2009
---
> Test Run By moller on Tue Dec 8 21:16:10 2009
929c986
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
933c990
< Test Run By moller on Tue Dec 8 19:43:33 2009
---
> Test Run By moller on Tue Dec 8 21:16:10 2009
953c1010
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
957c1014
< Test Run By moller on Tue Dec 8 19:43:36 2009
---
> Test Run By moller on Tue Dec 8 21:16:13 2009
976c1033
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
980c1037
< Test Run By moller on Tue Dec 8 19:43:37 2009
---
> Test Run By moller on Tue Dec 8 21:16:14 2009
1037c1094
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
1039c1096
< make[2]: *** [check-gdb.threads] Error 1
---
> make[4]: *** [check-gdb.threads] Error 1
1042c1099
< Test Run By moller on Tue Dec 8 19:44:54 2009
---
> Test Run By moller on Tue Dec 8 21:17:32 2009
1074c1131
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
1078c1135
< Test Run By moller on Tue Dec 8 19:44:57 2009
---
> Test Run By moller on Tue Dec 8 21:17:35 2009
1100c1157
< /home/moller/tinkering/fsfgdb/build/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
---
> /home/moller/tinkering/fsfgdb/build2/gdb/testsuite/../../gdb/gdb version 7.0.0.20091209-cvs -nw -nx
1102,1103c1159,1163
< make[2]: Leaving directory `/home/moller/tinkering/fsfgdb/build/gdb/testsuite'
< make[1]: Leaving directory `/home/moller/tinkering/fsfgdb/build/gdb/testsuite'
---
> make[4]: Leaving directory `/home/moller/tinkering/fsfgdb/build2/gdb/testsuite'
> make[3]: Leaving directory `/home/moller/tinkering/fsfgdb/build2/gdb/testsuite'
> make[2]: Leaving directory `/home/moller/tinkering/fsfgdb/build2/gdb'
> make[1]: Nothing to be done for `check-target'.
> make[1]: Leaving directory `/home/moller/tinkering/fsfgdb/build2'
next reply other threads:[~2009-12-09 13:32 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-12-09 13:32 Chris Moller [this message]
2009-12-09 14:05 ` Daniel Jacobowitz
2009-12-09 15:10 ` Chris Moller
2009-12-10 18:41 ` Daniel Jacobowitz
2009-12-10 19:04 ` Tom Tromey
2009-12-10 19:09 ` Chris Moller
2009-12-10 19:13 ` Daniel Jacobowitz
2009-12-10 16:59 ` Tom Tromey
2009-12-10 18:33 ` Chris Moller
2009-12-10 18:55 ` Tom Tromey
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=4B1FA6F2.1060105@redhat.com \
--to=cmoller@redhat.com \
--cc=gdb-patches@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