mirror of
https://github.com/google/googletest.git
synced 2025-04-04 21:15:03 +00:00
Merge e0d5dba132
into 52204f78f9
This commit is contained in:
commit
6f91db3a5c
2 changed files with 3 additions and 4 deletions
|
@ -1109,7 +1109,7 @@ class StreamingListener : public EmptyTestEventListener {
|
|||
GTEST_CHECK_(sockfd_ != -1)
|
||||
<< "Send() can be called only when there is a connection.";
|
||||
|
||||
const auto len = static_cast<size_t>(message.length());
|
||||
const auto len = message.length();
|
||||
if (write(sockfd_, message.c_str(), len) != static_cast<ssize_t>(len)) {
|
||||
GTEST_LOG_(WARNING) << "stream_result_to: failed to stream to "
|
||||
<< host_name_ << ":" << port_num_;
|
||||
|
|
|
@ -1176,7 +1176,7 @@ int UnitTestImpl::test_to_run_count() const {
|
|||
// trace but Bar() and CurrentOsStackTraceExceptTop() won't.
|
||||
std::string UnitTestImpl::CurrentOsStackTraceExceptTop(int skip_count) {
|
||||
return os_stack_trace_getter()->CurrentStackTrace(
|
||||
static_cast<int>(GTEST_FLAG_GET(stack_trace_depth)), skip_count + 1
|
||||
GTEST_FLAG_GET(stack_trace_depth), skip_count + 1
|
||||
// Skips the user-specified number of frames plus this function
|
||||
// itself.
|
||||
); // NOLINT
|
||||
|
@ -4204,8 +4204,7 @@ void XmlUnitTestResultPrinter::OutputXmlCDataSection(::std::ostream* stream,
|
|||
for (;;) {
|
||||
const char* const next_segment = strstr(segment, "]]>");
|
||||
if (next_segment != nullptr) {
|
||||
stream->write(segment,
|
||||
static_cast<std::streamsize>(next_segment - segment));
|
||||
stream->write(segment, next_segment - segment);
|
||||
*stream << "]]>]]><![CDATA[";
|
||||
segment = next_segment + strlen("]]>");
|
||||
} else {
|
||||
|
|
Loading…
Add table
Reference in a new issue