From owner-cvs-all@FreeBSD.ORG Mon Jun 18 17:25:29 2007 Return-Path: X-Original-To: cvs-all@FreeBSD.org Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 77CBD16A41F; Mon, 18 Jun 2007 17:25:29 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.freebsd.org (Postfix) with ESMTP id 1E3B813C4AE; Mon, 18 Jun 2007 17:25:28 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.47] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.8/8.13.8) with ESMTP id l5IHPOul003698 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 18 Jun 2007 10:25:27 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <4676BF5A.5020400@FreeBSD.org> Date: Mon, 18 Jun 2007 10:22:34 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.12 (Windows/20070509) MIME-Version: 1.0 To: Xin LI References: <200706160204.l5G24khs074682@repoman.freebsd.org> In-Reply-To: <200706160204.l5G24khs074682@repoman.freebsd.org> Content-Type: text/plain; charset=KOI8-U; format=flowed Content-Transfer-Encoding: 7bit Cc: cvs-src@FreeBSD.org, src-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/tools/regression/tmpfs Makefile h_funcs.subr h_tools.c t_create t_dots t_exec t_id_gen t_link t_mkdir t_mount t_pipes t_read_write t_readdir t_remove t_rename t_rmdir t_setattr t_sizes t_sockets t_statvfs t_symlink t_times t_trail_slash ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Jun 2007 17:25:29 -0000 Are those really fs-specific? -Maxim Xin LI wrote: > delphij 2007-06-16 02:04:45 UTC > > FreeBSD src repository > > Added files: > tools/regression/tmpfs Makefile h_funcs.subr h_tools.c > t_create t_dots t_exec t_id_gen t_link > t_mkdir t_mount t_pipes t_read_write > t_readdir t_remove t_rename t_rmdir > t_setattr t_sizes t_sockets t_statvfs > t_symlink t_times t_trail_slash > t_truncate t_vnd t_vnode_leak > Log: > MFp4: Add regression tests for tmpfs. > > Obtained from: NetBSD via p4 > Submitted by: Howard Su > > Revision Changes Path > 1.1 +39 -0 src/tools/regression/tmpfs/Makefile (new) > 1.1 +191 -0 src/tools/regression/tmpfs/h_funcs.subr (new) > 1.1 +283 -0 src/tools/regression/tmpfs/h_tools.c (new) > 1.1 +98 -0 src/tools/regression/tmpfs/t_create (new) > 1.1 +63 -0 src/tools/regression/tmpfs/t_dots (new) > 1.1 +62 -0 src/tools/regression/tmpfs/t_exec (new) > 1.1 +75 -0 src/tools/regression/tmpfs/t_id_gen (new) > 1.1 +108 -0 src/tools/regression/tmpfs/t_link (new) > 1.1 +110 -0 src/tools/regression/tmpfs/t_mkdir (new) > 1.1 +85 -0 src/tools/regression/tmpfs/t_mount (new) > 1.1 +62 -0 src/tools/regression/tmpfs/t_pipes (new) > 1.1 +81 -0 src/tools/regression/tmpfs/t_read_write (new) > 1.1 +93 -0 src/tools/regression/tmpfs/t_readdir (new) > 1.1 +83 -0 src/tools/regression/tmpfs/t_remove (new) > 1.1 +150 -0 src/tools/regression/tmpfs/t_rename (new) > 1.1 +114 -0 src/tools/regression/tmpfs/t_rmdir (new) > 1.1 +115 -0 src/tools/regression/tmpfs/t_setattr (new) > 1.1 +99 -0 src/tools/regression/tmpfs/t_sizes (new) > 1.1 +63 -0 src/tools/regression/tmpfs/t_sockets (new) > 1.1 +62 -0 src/tools/regression/tmpfs/t_statvfs (new) > 1.1 +88 -0 src/tools/regression/tmpfs/t_symlink (new) > 1.1 +114 -0 src/tools/regression/tmpfs/t_times (new) > 1.1 +61 -0 src/tools/regression/tmpfs/t_trail_slash (new) > 1.1 +64 -0 src/tools/regression/tmpfs/t_truncate (new) > 1.1 +95 -0 src/tools/regression/tmpfs/t_vnd (new) > 1.1 +63 -0 src/tools/regression/tmpfs/t_vnode_leak (new) > >