mirror of
https://git.freebsd.org/ports.git
synced 2025-04-29 01:56:37 -04:00
20 lines
853 B
C++
20 lines
853 B
C++
--- base/files/file_util_unittest.cc.orig 2024-06-22 08:49:42 UTC
|
|
+++ base/files/file_util_unittest.cc
|
|
@@ -3835,7 +3835,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";
|
|
@@ -4568,7 +4568,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());
|