aboutsummaryrefslogtreecommitdiff
path: root/test/base/platform
diff options
context:
space:
mode:
authorYuqian Yang <crupest@crupest.life>2025-09-04 22:59:47 +0800
committerYuqian Yang <crupest@crupest.life>2025-09-04 22:59:47 +0800
commit4c3098be1c5abaed610b8f10216d59829fc107ce (patch)
tree2f1367f1e6ed35ad831bba5888a6dfdbfa72a91b /test/base/platform
parentfdddc7f4a8884a8481dc71c0f34b8775659ba236 (diff)
downloadcru-4c3098be1c5abaed610b8f10216d59829fc107ce.tar.gz
cru-4c3098be1c5abaed610b8f10216d59829fc107ce.tar.bz2
cru-4c3098be1c5abaed610b8f10216d59829fc107ce.zip
Fix SetFileDescriptorFlags (by adding testing).
Diffstat (limited to 'test/base/platform')
-rw-r--r--test/base/platform/unix/UnixFileTest.cpp14
1 files changed, 12 insertions, 2 deletions
diff --git a/test/base/platform/unix/UnixFileTest.cpp b/test/base/platform/unix/UnixFileTest.cpp
index d5bba0db..b18b6bce 100644
--- a/test/base/platform/unix/UnixFileTest.cpp
+++ b/test/base/platform/unix/UnixFileTest.cpp
@@ -1,12 +1,12 @@
-#include "cru/base/platform/unix/UnixFileStream.h"
+#include "cru/base/platform/unix/UnixFile.h"
#include <catch2/catch_test_macros.hpp>
#include <fcntl.h>
#include <filesystem>
-TEST_CASE("UnixFile Work", "[unix]") {
+TEST_CASE("UnixFile Auto Close", "[unix]") {
using namespace cru;
using namespace cru::platform::unix;
@@ -36,3 +36,13 @@ TEST_CASE("UnixFile Work", "[unix]") {
std::filesystem::remove(temp_file_path);
}
+
+TEST_CASE("UnixFile NonBlock Read", "[unix]") {
+ using namespace cru;
+ using namespace cru::platform::unix;
+
+ char buffer[1];
+
+ auto pipe = OpenUniDirectionalPipe(UnixPipeFlags::NonBlock);
+ REQUIRE(pipe.read.Read(buffer, 1) == -1);
+}