public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug d/103840] New: d: Errors message: Please submit a full bug report in testsuite
@ 2021-12-26 22:12 ibuclaw at gdcproject dot org
  2021-12-26 22:16 ` [Bug d/103840] " ibuclaw at gdcproject dot org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: ibuclaw at gdcproject dot org @ 2021-12-26 22:12 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 103840
           Summary: d: Errors message: Please submit a full bug report in
                    testsuite
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: d
          Assignee: ibuclaw at gdcproject dot org
          Reporter: ibuclaw at gdcproject dot org
  Target Milestone: ---

A number of fail_compilation tests are silently passing with the error: Please
submit a full bug report.  They should all be fixed.

---
299.o fail_compilation/fail299.d^M
^M
in pp_format, at pretty-print.c:1478^M
0x9db102 pp_format(pretty_printer*, text_info*)^M
        ../../gcc/pretty-print.c:1478^M
0x20ae97c diagnostic_report_diagnostic(diagnostic_context*, diagnostic_info*)^M
        ../../gcc/diagnostic.c:1346^M
0xbe43aa d_diagnostic_report_diagnostic^M
        ../../gcc/d/d-diagnostic.cc:203^M
0xbe450c verror(Loc const&, char const*, __va_list_tag*, char const*, char
const*, char const*)^M
        ../../gcc/d/d-diagnostic.cc:242^M
0xab2769 error(Loc const&, char const*, ...)^M
        ../../gcc/d/dmd/errors.d:100^M
0xacdf78
_D3dmd13expressionsem3fitFCQz7dstruct17StructDeclarationKxSQCf7globals3LocPSQCw6dscope5ScopePSQDo4root5array__T5ArrayTCQEn10expression10ExpressionZQBkCQFt5mtype4TypeZb^M
        ../../gcc/d/dmd/expressionsem.d:13111^M


---
fail_compilation/fail1995.d:12:24: note: Path(s) searched (as provided by
'-J'):^M
^M
in pp_format, at pretty-print.c:1478^M
0x9db102 pp_format(pretty_printer*, text_info*)^M
        ../../gcc/pretty-print.c:1478^M
0x20ae97c diagnostic_report_diagnostic(diagnostic_context*, diagnostic_info*)^M
        ../../gcc/diagnostic.c:1346^M
0xbe43aa d_diagnostic_report_diagnostic^M
        ../../gcc/d/d-diagnostic.cc:203^M
0xaba431 Expression::errorSupplemental(char const*, ...)^M
        ../../gcc/d/dmd/expression.d:815^M
---

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

* [Bug d/103840] d: Errors message: Please submit a full bug report in testsuite
  2021-12-26 22:12 [Bug d/103840] New: d: Errors message: Please submit a full bug report in testsuite ibuclaw at gdcproject dot org
@ 2021-12-26 22:16 ` ibuclaw at gdcproject dot org
  2021-12-27  8:00 ` ibuclaw at gdcproject dot org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: ibuclaw at gdcproject dot org @ 2021-12-26 22:16 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from Iain Buclaw <ibuclaw at gdcproject dot org> ---
In both cases, the dmd front-end has an error with %zu as a format specifier in
the message.

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

* [Bug d/103840] d: Errors message: Please submit a full bug report in testsuite
  2021-12-26 22:12 [Bug d/103840] New: d: Errors message: Please submit a full bug report in testsuite ibuclaw at gdcproject dot org
  2021-12-26 22:16 ` [Bug d/103840] " ibuclaw at gdcproject dot org
@ 2021-12-27  8:00 ` ibuclaw at gdcproject dot org
  2022-01-03 11:26 ` cvs-commit at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: ibuclaw at gdcproject dot org @ 2021-12-27  8:00 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Iain Buclaw <ibuclaw at gdcproject dot org> ---
Fix in upstream.

https://github.com/dlang/dmd/pull/13462

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

* [Bug d/103840] d: Errors message: Please submit a full bug report in testsuite
  2021-12-26 22:12 [Bug d/103840] New: d: Errors message: Please submit a full bug report in testsuite ibuclaw at gdcproject dot org
  2021-12-26 22:16 ` [Bug d/103840] " ibuclaw at gdcproject dot org
  2021-12-27  8:00 ` ibuclaw at gdcproject dot org
@ 2022-01-03 11:26 ` cvs-commit at gcc dot gnu.org
  2022-01-03 11:27 ` ibuclaw at gdcproject dot org
  2022-01-07  6:39 ` pinskia at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2022-01-03 11:26 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Iain Buclaw <ibuclaw@gcc.gnu.org>:

https://gcc.gnu.org/g:c43b5909031c7aa32ac65df3e392a12d32c45194

commit r12-6185-gc43b5909031c7aa32ac65df3e392a12d32c45194
Author: Iain Buclaw <ibuclaw@gdcproject.org>
Date:   Sun Jan 2 13:36:51 2022 +0100

    d: Merge upstream dmd 001bfd97b, druntime 759e6023, phobos 468788323.

    D front-end changes:

        - Import latest changes to mainline.
        - Fix bad format specifiers in front-end errors (PR103840).
        - Refactoring of some leaf modules to the dmd/root package.
        - Updating copyright notice dates and urls.

    Phobos changes:

        - Import latest changes to mainline.

    gcc/d/ChangeLog:

            PR d/103840
            * dmd/MERGE: Merge upstream dmd 001bfd97b.
            * Make-lang.in (D_FRONTEND_OBJS): Rename d/complex.o to
            d/root-complex.o, and d/utf.o to d/root/utf.o.

    libphobos/ChangeLog:

            * libdruntime/MERGE: Merge upstream druntime 759e6023.
            * src/MERGE: Merge upstream phobos 468788323.

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

* [Bug d/103840] d: Errors message: Please submit a full bug report in testsuite
  2021-12-26 22:12 [Bug d/103840] New: d: Errors message: Please submit a full bug report in testsuite ibuclaw at gdcproject dot org
                   ` (2 preceding siblings ...)
  2022-01-03 11:26 ` cvs-commit at gcc dot gnu.org
@ 2022-01-03 11:27 ` ibuclaw at gdcproject dot org
  2022-01-07  6:39 ` pinskia at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: ibuclaw at gdcproject dot org @ 2022-01-03 11:27 UTC (permalink / raw)
  To: gcc-bugs

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

Iain Buclaw <ibuclaw at gdcproject dot org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|---                         |FIXED

--- Comment #4 from Iain Buclaw <ibuclaw at gdcproject dot org> ---
Fix committed.

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

* [Bug d/103840] d: Errors message: Please submit a full bug report in testsuite
  2021-12-26 22:12 [Bug d/103840] New: d: Errors message: Please submit a full bug report in testsuite ibuclaw at gdcproject dot org
                   ` (3 preceding siblings ...)
  2022-01-03 11:27 ` ibuclaw at gdcproject dot org
@ 2022-01-07  6:39 ` pinskia at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu.org @ 2022-01-07  6:39 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |12.0

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

end of thread, other threads:[~2022-01-07  6:39 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-26 22:12 [Bug d/103840] New: d: Errors message: Please submit a full bug report in testsuite ibuclaw at gdcproject dot org
2021-12-26 22:16 ` [Bug d/103840] " ibuclaw at gdcproject dot org
2021-12-27  8:00 ` ibuclaw at gdcproject dot org
2022-01-03 11:26 ` cvs-commit at gcc dot gnu.org
2022-01-03 11:27 ` ibuclaw at gdcproject dot org
2022-01-07  6:39 ` pinskia 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).