Thread overview
[Issue 16706] non-ASCII characters in file names generate bad file names for coverage.
[Issue 16706] chinese dir coverage.
Nov 21, 2016
liangwen
Nov 21, 2016
liangwen
Jul 16, 2017
Rainer Schuetze
Dec 17, 2022
Iain Buclaw
November 21, 2016
https://issues.dlang.org/show_bug.cgi?id=16706

--- Comment #1 from liangwen <liangwen@msn.com> ---
if put project in the dir with chinese words,cannot show the coverage.

--
November 21, 2016
https://issues.dlang.org/show_bug.cgi?id=16706

liangwen <liangwen@msn.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P1                          |P2

--- Comment #2 from liangwen <liangwen@msn.com> ---
i find wrong is
if the dir have chinese words,dont save the .lst file in the project dir.And I
cannot find the .lst.

--
July 16, 2017
https://issues.dlang.org/show_bug.cgi?id=16706

Rainer Schuetze <r.sagitario@gmx.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |r.sagitario@gmx.de
          Component|visuald                     |dmd
            Summary|chinese dir  coverage.      |non-ASCII characters in
                   |                            |file names generate bad
                   |                            |file names for coverage.

--- Comment #3 from Rainer Schuetze <r.sagitario@gmx.de> ---
non-ASCII characters in the path even causes crashes:

c:\tmp\d\lünk>type test.d
int main()
{
        return 0;
}

c:\tmp\d\lünk>c:\s\d\rainers\windows\bin\dmd -cov ..\lünk\test.d

c:\tmp\d\lünk>test

crashes (without stack trace). This is caused by the non-UTF8 name being embedded into the object file without translation to UTF8. Updating title and reassigning to dmd.

--
December 17, 2022
https://issues.dlang.org/show_bug.cgi?id=16706

Iain Buclaw <ibuclaw@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P2                          |P3

--