t_sockets revision 170809
1177853Sdavidxu#!/bin/sh
2177853Sdavidxu#
3177853Sdavidxu# $NetBSD: t_sockets,v 1.5 2006/11/09 16:20:06 jmmv Exp $
4177853Sdavidxu#
5177853Sdavidxu# Copyright (c) 2005, 2006 The NetBSD Foundation, Inc.
6177853Sdavidxu# All rights reserved.
7177853Sdavidxu#
8177853Sdavidxu# This code is derived from software contributed to The NetBSD Foundation
9177853Sdavidxu# by Julio M. Merino Vidal, developed as part of Google's Summer of Code
10177853Sdavidxu# 2005 program.
11177853Sdavidxu#
12177853Sdavidxu# Redistribution and use in source and binary forms, with or without
13177853Sdavidxu# modification, are permitted provided that the following conditions
14177853Sdavidxu# are met:
15177853Sdavidxu# 1. Redistributions of source code must retain the above copyright
16177853Sdavidxu#    notice, this list of conditions and the following disclaimer.
17177853Sdavidxu# 2. Redistributions in binary form must reproduce the above copyright
18177853Sdavidxu#    notice, this list of conditions and the following disclaimer in the
19177853Sdavidxu#    documentation and/or other materials provided with the distribution.
20177853Sdavidxu# 3. All advertising materials mentioning features or use of this software
21177853Sdavidxu#    must display the following acknowledgement:
22177853Sdavidxu#        This product includes software developed by the NetBSD
23177853Sdavidxu#        Foundation, Inc. and its contributors.
24177853Sdavidxu# 4. Neither the name of The NetBSD Foundation nor the names of its
25177853Sdavidxu#    contributors may be used to endorse or promote products derived
26177853Sdavidxu#    from this software without specific prior written permission.
27177853Sdavidxu#
28177853Sdavidxu# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
29177853Sdavidxu# ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
30177853Sdavidxu# TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
31177853Sdavidxu# PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
32177853Sdavidxu# BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
33177853Sdavidxu# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
34177853Sdavidxu# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
35177853Sdavidxu# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
36177853Sdavidxu# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
37217107Skib# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
38217107Skib# POSSIBILITY OF SUCH DAMAGE.
39#
40# $FreeBSD: head/tools/regression/tmpfs/t_sockets 170809 2007-06-16 02:04:44Z delphij $
41#
42
43#
44# Verifies that sockets can be created using socket/bind.
45#
46
47test_run() {
48	test_mount
49
50	test_name "Sockets can be created"
51	${Src_Dir}/h_tools sockets a
52	rm a || die
53
54	mkdir dir || die
55	echo "${Src_Dir}/h_tools sockets dir/a" | kqueue_monitor 1 dir || die
56	test_name "Creating a socket raises NOTE_WRITE on the parent" \
57	    "directory"
58	kqueue_check dir NOTE_WRITE || die
59
60	test_unmount
61}
62
63. ${SUBRDIR}/h_funcs.subr
64