mirror of
https://github.com/google/googletest.git
synced 2025-04-04 21:15:03 +00:00
Issue #4566 Added an Error message when GetTempFileName fails
This commit is contained in:
parent
5bcb2d78a1
commit
d016b0e2f0
1 changed files with 1 additions and 1 deletions
|
@ -1078,7 +1078,7 @@ class CapturedStream {
|
|||
0, // Generate unique file name.
|
||||
temp_file_path);
|
||||
GTEST_CHECK_(success != 0)
|
||||
<< "Unable to create a temporary file in " << temp_dir_path;
|
||||
<< "Unable to create a temporary file in " << temp_dir_path << ". Error Message: " << ::GetLastError();
|
||||
const int captured_fd = creat(temp_file_path, _S_IREAD | _S_IWRITE);
|
||||
GTEST_CHECK_(captured_fd != -1)
|
||||
<< "Unable to open temporary file " << temp_file_path;
|
||||
|
|
Loading…
Add table
Reference in a new issue