mirror of
https://git.freebsd.org/ports.git
synced 2025-07-06 20:09:14 -04:00
20 lines
853 B
C++
20 lines
853 B
C++
--- base/files/file_util_unittest.cc.orig 2023-01-11 09:17:16 UTC
|
|
+++ base/files/file_util_unittest.cc
|
|
@@ -3558,7 +3558,7 @@ TEST_F(FileUtilTest, ReadFileToStringWithNamedPipe) {
|
|
}
|
|
#endif // BUILDFLAG(IS_WIN)
|
|
|
|
-#if BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_APPLE)
|
|
+#if BUILDFLAG(IS_POSIX) && !BUILDFLAG(IS_APPLE) && !BUILDFLAG(IS_BSD)
|
|
TEST_F(FileUtilTest, ReadFileToStringWithProcFileSystem) {
|
|
FilePath file_path("/proc/cpuinfo");
|
|
std::string data = "temp";
|
|
@@ -4281,7 +4281,7 @@ TEST(FileUtilMultiThreadedTest, MultiThreadedTempFiles
|
|
NULL);
|
|
#else
|
|
size_t bytes_written =
|
|
- ::write(::fileno(output_file.get()), content.c_str(), content.length());
|
|
+ ::write(fileno(output_file.get()), content.c_str(), content.length());
|
|
#endif
|
|
EXPECT_EQ(content.length(), bytes_written);
|
|
::fflush(output_file.get());
|