toeb / googletest

Automatically exported from code.google.com/p/googletest
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Assertion messages printed twice on Windows CE #194

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Build a Windows Mobile gtest app with a failing assertion.
2. Run it

What is the expected output? What do you see instead?
The assertion failure should only print once. Instead it is printed twice.
I am looking at the output in the debug window of visual studio and also in
the output console you can turn on for the device emulator.

What version of the product are you using? On what operating system?
trunk

Please provide any additional information below.
The reason is that it does a printf and also does an OutputDebugString. On
Windows CE the two are basically the same thing (I'm pretty sure one calls
the other).

Original issue reported on code.google.com by dalewk...@gmail.com on 12 Sep 2009 at 11:10

GoogleCodeExporter commented 9 years ago

Original comment by zhanyong...@gmail.com on 16 Sep 2009 at 5:59

GoogleCodeExporter commented 9 years ago
Fixed in trunk now.

Original comment by zhanyong...@gmail.com on 18 Sep 2009 at 4:33