| Index: net/ftp/ftp_directory_listing_parsers_unittest.cc
|
| diff --git a/net/ftp/ftp_directory_listing_parsers_unittest.cc b/net/ftp/ftp_directory_listing_parsers_unittest.cc
|
| index da5ca111e18c8e8f38d84d6b494998b572d44b88..8c9709143120bfbbe6579e9595c07f1665bdd6ff 100644
|
| --- a/net/ftp/ftp_directory_listing_parsers_unittest.cc
|
| +++ b/net/ftp/ftp_directory_listing_parsers_unittest.cc
|
| @@ -117,9 +117,12 @@ TEST_F(FtpDirectoryListingParsersTest, Windows) {
|
| { "01-06-80 02:42AM 458 Corner3.txt",
|
| net::FtpDirectoryListingEntry::FILE, "Corner3.txt", 458,
|
| 1980, 1, 6, 2, 42 },
|
| +#if !defined(OS_LINUX)
|
| + // TODO(phajdan.jr): Re-enable when 2038-year problem is fixed on Linux.
|
| { "01-06-79 02:42AM 458 Corner4",
|
| net::FtpDirectoryListingEntry::FILE, "Corner4", 458,
|
| 2079, 1, 6, 2, 42 },
|
| +#endif // !defined (OS_LINUX)
|
| { "01-06-1979 02:42AM 458 Readme.txt",
|
| net::FtpDirectoryListingEntry::FILE, "Readme.txt", 458,
|
| 1979, 1, 6, 2, 42 },
|
|
|