You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In logging_unittest.cc, we try to log a void* p = reinterpret_cast<void*>(0x12345678); in RAW_LOG(INFO, "ptr %p", p); format.
The golden file logging_unittest.err contains also a IDATE TIME__ THREADID logging_unittest.cc:LINE] RAW: ptr 0x12345678
When I build on x64 mode, outputs are:
By the way, diff command doesn't exist under Windows. Maybe test also for FC command, which gives a better experience for MSVC users.
The text was updated successfully, but these errors were encountered:
flm8620
changed the title
Loggine UnitTest failed on x64 VS2015. Reason: Pointer format not consistent
Logging UnitTest failed on x64 VS2015. Reason: Pointer format not consistent
Oct 26, 2016
In logging_unittest.cc, we try to log a
void* p = reinterpret_cast<void*>(0x12345678);
inRAW_LOG(INFO, "ptr %p", p);
format.The golden file logging_unittest.err contains also a
IDATE TIME__ THREADID logging_unittest.cc:LINE] RAW: ptr 0x12345678
When I build on x64 mode, outputs are:
Golden file string:
Test generated string:
Which causes a fail.
By the way, diff command doesn't exist under Windows. Maybe test also for FC command, which gives a better experience for MSVC users.
The text was updated successfully, but these errors were encountered: