Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-10-12 14:21:06 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2020-10-12 14:21:06 +0300
commit54c006f378fb7d903054d50f70035acb4b84121d (patch)
treeba358f76dd00edae37ff242cf14746cb28a9fcc9 /test
parent2dc71394ce186d6dd0850dcd7f4e7825225039b9 (diff)
P1030 refactored path_view appears to be mostly working. Tests all pass on Windows (after fixing the long broken pipe_handle coroutines test). On GCC7 on Linux, quite a few tests appear to have broken, we shall see what the CI says.
Diffstat (limited to 'test')
-rw-r--r--test/tests/pipe_handle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tests/pipe_handle.cpp b/test/tests/pipe_handle.cpp
index ff623c90..31bf8172 100644
--- a/test/tests/pipe_handle.cpp
+++ b/test/tests/pipe_handle.cpp
@@ -1,5 +1,5 @@
/* Integration test kernel for whether pipe handles work
-(C) 2019 Niall Douglas <http://www.nedproductions.biz/> (2 commits)
+(C) 2019-2020 Niall Douglas <http://www.nedproductions.biz/> (2 commits)
File Created: Nov 2019
@@ -319,7 +319,7 @@ static inline void TestCoroutinedPipeHandle()
{
// Have the kernel tell me when an i/o completion is ready
auto r = multiplexer->check_for_any_completed_io();
- if(r.value().initiated_ios_completed == 0)
+ if(r.value().initiated_ios_completed == 0 && r.value().initiated_ios_finished == 0)
{
break;
}