fill in PR number: kern/43843

This commit is contained in:
pooka 2010-09-06 15:27:18 +00:00
parent 4dd873e1cd
commit 192b53ec54
1 changed files with 6 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: t_vnops.c,v 1.7 2010/09/06 15:21:34 pooka Exp $ */
/* $NetBSD: t_vnops.c,v 1.8 2010/09/06 15:27:18 pooka Exp $ */
/*-
* Copyright (c) 2010 The NetBSD Foundation, Inc.
@ -449,6 +449,11 @@ symlink_zerolen(const atf_tc_t *tc, const char *mp)
USES_SYMLINKS;
RL(rump_sys_chdir(mp));
if (FSTYPE_TMPFS(tc)) {
atf_tc_expect_signal(SIGABRT, "PR kern/43843");
}
RL(rump_sys_symlink("", "afile"));
RL(rump_sys_chdir("/"));
}