Re: [libcxx] r273078 - Fix 3 bugs in filesystem tests and implementation.

2016-06-18 Thread Eric Fiselier via cfe-commits
Hi Renato, I'm aware of the failure, and I'll commit *something* to get the build unbroken today. The issue here is that "file_time_type" AKA system_clock::time_point has a much larger range than std::time_t on 32 bit builds, so "file_time_type::max()" overflows in the conversion. I'm trying to f

Re: [libcxx] r273078 - Fix 3 bugs in filesystem tests and implementation.

2016-06-18 Thread Renato Golin via cfe-commits
On 18 June 2016 at 05:10, Eric Fiselier via cfe-commits wrote: > Author: ericwf > Date: Fri Jun 17 23:10:23 2016 > New Revision: 273078 > > URL: http://llvm.org/viewvc/llvm-project?rev=273078&view=rev > Log: > Fix 3 bugs in filesystem tests and implementation. Hi Eric, Thanks for he fixes, but j