[*] Update unbuffered/directio test to write at least sector size bytes under NT (usually 512)
[*] Update runtime
This commit is contained in:
parent
9141a0015c
commit
384b27c48b
@ -1 +1 @@
|
||||
Subproject commit 9f2ff9de1952c440b62772a51506493dfed927d4
|
||||
Subproject commit 7a0d9701b5754c3001c9ece739f804310c410e96
|
@ -192,7 +192,7 @@ TEST(FS, Async)
|
||||
auto stream = AuIOFS::OpenAsyncUnique("./AsyncFile", AuIOFS::EFileOpenMode::eReadWrite, true);
|
||||
ASSERT_TRUE(bool(stream));
|
||||
|
||||
AuByteBuffer rngbuffer(32);
|
||||
AuByteBuffer rngbuffer(512);
|
||||
AuRng::RngFillRange(rngbuffer);
|
||||
|
||||
auto transaction = stream->NewTransaction();
|
||||
@ -218,7 +218,7 @@ TEST(FS, AsyncAltWait)
|
||||
auto stream = AuIOFS::OpenAsyncUnique("./AsyncFile", AuIOFS::EFileOpenMode::eReadWrite, true);
|
||||
ASSERT_TRUE(bool(stream));
|
||||
|
||||
AuByteBuffer rngbuffer(32);
|
||||
AuByteBuffer rngbuffer(512);
|
||||
AuRng::RngFillRange(rngbuffer);
|
||||
|
||||
auto transaction = stream->NewTransaction();
|
||||
|
Loading…
Reference in New Issue
Block a user