|
Boost Testing : |
Subject: Re: [Boost-testing] [EXTERNAL] Re: Massive debug output in develop nightly testing
From: Belcourt, Kenneth (kbelco_at_[hidden])
Date: 2014-11-11 22:03:46
On Nov 11, 2014, at 7:46 PM, Rene Rivera <grafikrobot_at_[hidden]> wrote:
> Yes, it does look similar to output I saw. Didn't realize it would show up for others. But I don't know where it's coming from.
>
> On Tue, Nov 11, 2014 at 8:27 PM, Belcourt, Kenneth <kbelco_at_[hidden]> wrote:
> Hi,
>
> Heres a snippet of output from the nightly testing process. I looks like someones dumping pointer addresses, or something, and an awful lot of them at that. Rene, could this be related to the new testing capabilities youre standing up? Any ideas?
Looks like its coming from this commit Beman made a hour or so ago:
c41521ceadb
He seems to have added an ostream overload that is getting picked up by the testing system.
include/boost/endian/detail/cover_operators.hpp
This one around line 100 in particular looks suspect:
// Stream inserter
template <class charT, class traits>
friend std::basic_ostream<charT, traits>&
operator<<(std::basic_ostream<charT, traits>& os, const T& x)
{
return os << +x;
}
Could this be it?
Noel