From owner-cvs-src-old@FreeBSD.ORG Sat Dec 6 07:08:14 2008 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 284951065688 for ; Sat, 6 Dec 2008 07:08:14 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 12EE58FC1A for ; Sat, 6 Dec 2008 07:08:14 +0000 (UTC) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id mB678D8i023163 for ; Sat, 6 Dec 2008 07:08:13 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id mB678DdJ023162 for cvs-src-old@freebsd.org; Sat, 6 Dec 2008 07:08:13 GMT (envelope-from kientzle@repoman.freebsd.org) Message-Id: <200812060708.mB678DdJ023162@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to kientzle@repoman.freebsd.org using -f From: Tim Kientzle Date: Sat, 6 Dec 2008 07:08:08 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive/test Makefile test_compat_bzip2.c test_compat_bzip2_1.tbz.uu test_compat_bzip2_2.tbz.uu test_compat_gzip.c test_compat_gzip_1.tgz.uu test_compat_gzip_2.tgz.uu test_fuzz.c test_fuzz_1.iso.uu X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 06 Dec 2008 07:08:14 -0000 kientzle 2008-12-06 07:08:08 UTC FreeBSD src repository Modified files: lib/libarchive/test Makefile Added files: lib/libarchive/test test_compat_bzip2.c test_compat_bzip2_1.tbz.uu test_compat_bzip2_2.tbz.uu test_compat_gzip.c test_compat_gzip_1.tgz.uu test_compat_gzip_2.tgz.uu test_fuzz.c test_fuzz_1.iso.uu Log: SVN rev 185683 on 2008-12-06 07:08:08Z by kientzle New tests: * support for bzip2 file with multiple concatenated bzip2 streams * support for bzip2 file with junk after bzip2 stream * support for gzip file with junk after gzip stream * "fuzz" tester randomly modifies a bunch of input files in order to try to crash libarchive (this found an amusing hang in the ISO9660 code when trying to read images that advertised a zero blocksize). This test is implemented, but commented out for now: * support for gzip file with multiple concatenated gzip streams Revision Changes Path 1.29 +3 -0 src/lib/libarchive/test/Makefile 1.1 +89 -0 src/lib/libarchive/test/test_compat_bzip2.c (new) 1.1 +24 -0 src/lib/libarchive/test/test_compat_bzip2_1.tbz.uu (new) 1.1 +11 -0 src/lib/libarchive/test/test_compat_bzip2_2.tbz.uu (new) 1.1 +94 -0 src/lib/libarchive/test/test_compat_gzip.c (new) 1.1 +24 -0 src/lib/libarchive/test/test_compat_gzip_1.tgz.uu (new) 1.1 +11 -0 src/lib/libarchive/test/test_compat_gzip_2.tgz.uu (new) 1.1 +118 -0 src/lib/libarchive/test/test_fuzz.c (new) 1.1 +26993 -0 src/lib/libarchive/test/test_fuzz_1.iso.uu (new)