-
Notifications
You must be signed in to change notification settings - Fork 43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Output from F# printfn displays line breaks after every character #67
Comments
I'm using Visual Studio 2012 on Windows 7. |
I suspect this goes beyond F#. What happens if you replace the WriteLine by a series of Writes of one char followed by a final WriteLine()? |
Good point--the following code prints a string char-by-char and exhibits the same behavior.
|
That might be the issue--it appears to add \r after every output line it receives? |
Yes, that's what I thought too. Should be an easy fix.
|
@OsirisTerje I moved this from the 3.0-only milestone. Why didn't you think it should be fixed in 2.x? |
Output from F#'s printfn is displayed with a newline after every character. See screenshots attached.
Sample code:
Results:
This does not appear in the NUnit GUI:
The same issue does not appear for printfn output from MsTest.
The text was updated successfully, but these errors were encountered: