]> Zhao Yanbai Git Server - minix.git/commitdiff
this test breaks on the new pre-i/o i/o buffer check. it wants to read
authorBen Gras <ben@minix3.org>
Tue, 24 May 2005 14:57:45 +0000 (14:57 +0000)
committerBen Gras <ben@minix3.org>
Tue, 24 May 2005 14:57:45 +0000 (14:57 +0000)
more than its buffer allowed, so it is reasonable that it breaks. reducing
read request size 'fixes' it.

test/test19.c

index 760f965503f3c4fd4731e698aacfbfeaa28976b2..0ad9272d282b8b0ece68a3219e572c68cd047765 100644 (file)
@@ -352,7 +352,7 @@ void test19e()
        if (write(n, a, 255) != 255) e(38);
        read(n1, b, 20);
        if (lseek(n, 0L, SEEK_SET) != 0L) e(39);
-       if ((j = read(n1, b, 1024)) != 255) e(40);
+       if ((j = read(n1, b, 512)) != 255) e(40);
        if (unlink("T3b") < 0) e(41);
        if (close(n) < 0) e(42);
        if (close(n1) < 0) e(43);