Tests exposing several problems with partial writes shorter than the

vector size, and partial writes of less than one block.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27041 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2008-08-18 15:16:27 +00:00
parent 9d4ec2ee7f
commit 27a11ab8b0
@@ -829,6 +829,19 @@ run_tests_alignment_restrictions(TestSuiteContext& context)
.AddTarget(0, 2048, false) .AddTarget(0, 2048, false)
.AddTarget(0, 512, true); .AddTarget(0, 512, true);
suite.AddTest(0, 51, true, B_PHYSICAL_IO_REQUEST)
.AddSource(0, 4096)
.NextResult(0, false, true)
.AddTarget(0, 512, true);
suite.AddTest(32, 51, true, B_PHYSICAL_IO_REQUEST)
.AddSource(0, 4096)
.NextResult(0, true, false)
.AddTarget(0, 512, true);
// Note: The operation has actually both partial begin and end, but
// our Test is not clever enough to realize that it is only one
// block and thus only one read phase is needed.
suite.Run(); suite.Run();
} }