[Issue 21185] New: printing the stack trace is not fully GNU-style compliant

d-bugmail at puremagic.com d-bugmail at puremagic.com
Fri Aug 21 18:11:46 UTC 2020


https://issues.dlang.org/show_bug.cgi?id=21185

          Issue ID: 21185
           Summary: printing the stack trace is not fully GNU-style
                    compliant
           Product: D
           Version: D2
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: P1
         Component: druntime
          Assignee: nobody at puremagic.com
          Reporter: b2.temp at gmx.com

---
#!dmd -g
module runnable;

import std.stdio;

void main(string[] args)
{
    assert(false);
}  
---

the output is

> core.exception.AssertError@/tmp/temp_7FD5CA522650.d(8): Assertion failure
----------------
??:? _d_assertp [0x4819e9]
/tmp/temp_7FD5CA522650.d:8 _Dmain [0x481918]
error: the process (/tmp/temp_7FD5CA522650) has returned the status 1
(Program-defined exit status)

"/tmp/temp_7FD5CA522650.d:8 " is neither DMD style nor completly GNU style.
There should be a colon after the 8

--


More information about the Digitalmars-d-bugs mailing list