From owner-cvs-src@FreeBSD.ORG Sat Jun 16 02:04:46 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 80CA716A468; Sat, 16 Jun 2007 02:04:46 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 55A3D13C458; Sat, 16 Jun 2007 02:04:46 +0000 (UTC) (envelope-from delphij@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5G24kkO074697; Sat, 16 Jun 2007 02:04:46 GMT (envelope-from delphij@repoman.freebsd.org) Received: (from delphij@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5G24khs074682; Sat, 16 Jun 2007 02:04:46 GMT (envelope-from delphij) Message-Id: <200706160204.l5G24khs074682@repoman.freebsd.org> From: Xin LI Date: Sat, 16 Jun 2007 02:04:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: 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-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Jun 2007 02:04:46 -0000 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)