public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug other/100338] New: [11 regression] Python error running test case after r11-2720
@ 2021-04-29 18:44 seurer at gcc dot gnu.org
  2021-04-29 19:30 ` [Bug other/100338] [11/12 " redi at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: seurer at gcc dot gnu.org @ 2021-04-29 18:44 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100338

            Bug ID: 100338
           Summary: [11 regression] Python error running test case after
                    r11-2720
           Product: gcc
           Version: 11.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: other
          Assignee: unassigned at gcc dot gnu.org
          Reporter: seurer at gcc dot gnu.org
  Target Milestone: ---

g:91e6226f880b048275a7ceedef716e159c7cefd9, r11-2720
make  -k check RUNTESTFLAGS="xmethods.exp=libstdc++-xmethods/unique_ptr.cc"
FAIL: libstdc++-xmethods/unique_ptr.cc
# of expected passes            1
# of unexpected failures        1


commit 91e6226f880b048275a7ceedef716e159c7cefd9 (HEAD, refs/bisect/bad)
Author: Jonathan Wakely <jwakely@redhat.com>
Date:   Fri Aug 7 17:13:56 2020 +0100

    libstdc++: Remove inheritance from elements in std::tuple


This problem occurs on just one of our LE systems and I am not sure why.  Can
this be related to PR90520?  The error is different.


PASS: libstdc++-xmethods/unique_ptr.cc execution test
Spawning: gdb -nw -nx -quiet -batch -ex "python print(gdb.type_printers)"
spawn gdb -nw -nx -quiet -batch -ex python print(gdb.type_printers)^M
[]^M
spawn gdb -nx -nw -quiet -batch -x unique_ptr.gdb^M
Breakpoint 1 at 0x10000afc: file
/home/seurer/gcc/git/gcc-11-test/libstdc++-v3/testsuite/libstdc++-xmethods/unique_ptr.cc,
line 60.^M
skipping: Breakpoint 1 at 0x10000afc: file
/home/seurer/gcc/git/gcc-11-test/libstdc++-v3/testsuite/libstdc++-xmethods/unique_ptr.cc,
line 60.^M
^M
skipping: ^M
Breakpoint 1, main () at
/home/seurer/gcc/git/gcc-11-test/libstdc++-v3/testsuite/libstdc++-xmethods/unique_ptr.cc:60^M
skipping: Breakpoint 1, main () at
/home/seurer/gcc/git/gcc-11-test/libstdc++-v3/testsuite/libstdc++-xmethods/unique_ptr.cc:60^M
60        return 0;  // Mark SPOT^M
skipping: 60      return 0;  // Mark SPOT^M
>From                To                  Syms Read   Shared Object Library^M
0x00007ffff7fa13e0  0x00007ffff7fd52c8  Yes (*)     /lib64/ld64.so.2^M
skipping: From                To                  Syms Read   Shared Object
Library^M
skipping: 0x00007ffff7fa13e0  0x00007ffff7fd52c8  Yes (*)    
/lib64/ld64.so.2^M
0x00007ffff7d9c840  0x00007ffff7ef74c8  Yes        
/home/seurer/gcc/git/build/gcc-11-test/powerpc64le-unknown-linux-gnu/./libstdc++-v3/src/.libs/libstdc++.so.6^M
0x00007ffff7b8fc20  0x00007ffff7c44de0  Yes (*)    
/lib/powerpc64le-linux-gnu/libm.so.6^M
0x00007ffff7b42fc0  0x00007ffff7b5091c  Yes        
/home/seurer/gcc/git/build/gcc-11-test/gcc/libgcc_s.so.1^M
0x00007ffff7927680  0x00007ffff7ab7af4  Yes (*)    
/lib/powerpc64le-linux-gnu/libc.so.6^M
(*): Shared library is missing debugging information.^M
skipping: 0x00007ffff7d9c840  0x00007ffff7ef74c8  Yes        
/home/seurer/gcc/git/build/gcc-11-test/powerpc64le-unknown-linux-gnu/./libstdc++-v3/src/.libs/libstdc++.so.6^M
skipping: 0x00007ffff7b8fc20  0x00007ffff7c44de0  Yes (*)    
/lib/powerpc64le-linux-gnu/libm.so.6^M
skipping: 0x00007ffff7b42fc0  0x00007ffff7b5091c  Yes        
/home/seurer/gcc/git/build/gcc-11-test/gcc/libgcc_s.so.1^M
skipping: 0x00007ffff7927680  0x00007ffff7ab7af4  Yes (*)    
/lib/powerpc64le-linux-gnu/libc.so.6^M
skipping: (*): Shared library is missing debugging information.^M
Python Exception <class 'gdb.error'> Attempt to take contents of a non-pointer
value.: ^M
skipping: Python Exception <class 'gdb.error'> Attempt to take contents of a
non-pointer value.: ^M
unique_ptr.gdb:10: Error in sourced command file:^M
Error while executing Python code.^M
FAIL: libstdc++-xmethods/unique_ptr.cc

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

* [Bug other/100338] [11/12 regression] Python error running test case after r11-2720
  2021-04-29 18:44 [Bug other/100338] New: [11 regression] Python error running test case after r11-2720 seurer at gcc dot gnu.org
@ 2021-04-29 19:30 ` redi at gcc dot gnu.org
  2021-04-29 20:27 ` seurer at gcc dot gnu.org
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: redi at gcc dot gnu.org @ 2021-04-29 19:30 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100338

--- Comment #1 from Jonathan Wakely <redi at gcc dot gnu.org> ---
Some of these tests are sensitive to GDB and Python versions. Do they differ
between machines?

I'll take a look at this tomorrow.

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

* [Bug other/100338] [11/12 regression] Python error running test case after r11-2720
  2021-04-29 18:44 [Bug other/100338] New: [11 regression] Python error running test case after r11-2720 seurer at gcc dot gnu.org
  2021-04-29 19:30 ` [Bug other/100338] [11/12 " redi at gcc dot gnu.org
@ 2021-04-29 20:27 ` seurer at gcc dot gnu.org
  2021-04-30  6:45 ` rguenth at gcc dot gnu.org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: seurer at gcc dot gnu.org @ 2021-04-29 20:27 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100338

--- Comment #2 from seurer at gcc dot gnu.org ---
On a system where things fail (Ubuntu 20.04.1):

Python 2.7.18
GNU gdb (GDB) 11.0.50.20201107-git


On a working system (Ubuntu 18.04.5):

Python 2.7.17
GNU gdb (Ubuntu 8.1.1-0ubuntu1) 8.1.1

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

* [Bug other/100338] [11/12 regression] Python error running test case after r11-2720
  2021-04-29 18:44 [Bug other/100338] New: [11 regression] Python error running test case after r11-2720 seurer at gcc dot gnu.org
  2021-04-29 19:30 ` [Bug other/100338] [11/12 " redi at gcc dot gnu.org
  2021-04-29 20:27 ` seurer at gcc dot gnu.org
@ 2021-04-30  6:45 ` rguenth at gcc dot gnu.org
  2021-07-28  7:06 ` rguenth at gcc dot gnu.org
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-04-30  6:45 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100338

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |11.2

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

* [Bug other/100338] [11/12 regression] Python error running test case after r11-2720
  2021-04-29 18:44 [Bug other/100338] New: [11 regression] Python error running test case after r11-2720 seurer at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2021-04-30  6:45 ` rguenth at gcc dot gnu.org
@ 2021-07-28  7:06 ` rguenth at gcc dot gnu.org
  2022-04-21  7:49 ` rguenth at gcc dot gnu.org
  2023-05-29 10:04 ` [Bug other/100338] [11/12/13/14 " jakub at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-07-28  7:06 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100338

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|11.2                        |11.3

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 11.2 is being released, retargeting bugs to GCC 11.3

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

* [Bug other/100338] [11/12 regression] Python error running test case after r11-2720
  2021-04-29 18:44 [Bug other/100338] New: [11 regression] Python error running test case after r11-2720 seurer at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2021-07-28  7:06 ` rguenth at gcc dot gnu.org
@ 2022-04-21  7:49 ` rguenth at gcc dot gnu.org
  2023-05-29 10:04 ` [Bug other/100338] [11/12/13/14 " jakub at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-04-21  7:49 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100338

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|11.3                        |11.4

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 11.3 is being released, retargeting bugs to GCC 11.4.

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

* [Bug other/100338] [11/12/13/14 regression] Python error running test case after r11-2720
  2021-04-29 18:44 [Bug other/100338] New: [11 regression] Python error running test case after r11-2720 seurer at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2022-04-21  7:49 ` rguenth at gcc dot gnu.org
@ 2023-05-29 10:04 ` jakub at gcc dot gnu.org
  5 siblings, 0 replies; 7+ messages in thread
From: jakub at gcc dot gnu.org @ 2023-05-29 10:04 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100338

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|11.4                        |11.5

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 11.4 is being released, retargeting bugs to GCC 11.5.

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

end of thread, other threads:[~2023-05-29 10:04 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-29 18:44 [Bug other/100338] New: [11 regression] Python error running test case after r11-2720 seurer at gcc dot gnu.org
2021-04-29 19:30 ` [Bug other/100338] [11/12 " redi at gcc dot gnu.org
2021-04-29 20:27 ` seurer at gcc dot gnu.org
2021-04-30  6:45 ` rguenth at gcc dot gnu.org
2021-07-28  7:06 ` rguenth at gcc dot gnu.org
2022-04-21  7:49 ` rguenth at gcc dot gnu.org
2023-05-29 10:04 ` [Bug other/100338] [11/12/13/14 " jakub at gcc dot gnu.org

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