Module Name: src Committed By: jruoho Date: Tue Mar 20 05:21:45 UTC 2012
Modified Files: src/tests/fs/vfs: t_io.c Log Message: Remove xfail. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/tests/fs/vfs/t_io.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/tests/fs/vfs/t_io.c diff -u src/tests/fs/vfs/t_io.c:1.8 src/tests/fs/vfs/t_io.c:1.9 --- src/tests/fs/vfs/t_io.c:1.8 Sun Feb 27 15:16:31 2011 +++ src/tests/fs/vfs/t_io.c Tue Mar 20 05:21:45 2012 @@ -1,4 +1,4 @@ -/* $NetBSD: t_io.c,v 1.8 2011/02/27 15:16:31 njoly Exp $ */ +/* $NetBSD: t_io.c,v 1.9 2012/03/20 05:21:45 jruoho Exp $ */ /*- * Copyright (c) 2010 The NetBSD Foundation, Inc. @@ -88,8 +88,6 @@ extendbody(const atf_tc_t *tc, off_t see O_CREAT | O_RDWR | (seekcnt ? O_APPEND : 0))); RL(rump_sys_ftruncate(fd, seekcnt)); RL(rump_sys_fstat(fd, &sb)); - if (FSTYPE_SYSVBFS(tc) && seekcnt) - atf_tc_expect_fail("PR kern/44307"); ATF_REQUIRE_EQ(sb.st_size, seekcnt); atf_tc_expect_pass(); @@ -174,7 +172,7 @@ shrinkfile(const atf_tc_t *tc, const cha ATF_TC_FSAPPLY(holywrite, "create a sparse file and fill hole"); ATF_TC_FSAPPLY(extendfile, "check that extending a file works"); ATF_TC_FSAPPLY(extendfile_append, "check that extending a file works " - "with a append-only fd"); + "with a append-only fd (PR kern/44307)"); ATF_TC_FSAPPLY(overwrite512, "write a 512 byte file twice"); ATF_TC_FSAPPLY(overwrite64k, "write a 64k byte file twice"); ATF_TC_FSAPPLY(overwrite_trunc, "write 64k + truncate + rewrite");