www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 21185] New: printing the stack trace is not fully GNU-style

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 puremagic.com
          Reporter: b2.temp gmx.com

---

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 --
Aug 21 2020