Return-Path: X-Original-To: apmail-avro-commits-archive@www.apache.org Delivered-To: apmail-avro-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id EFD3010A8A for ; Wed, 11 Jun 2014 19:26:59 +0000 (UTC) Received: (qmail 52411 invoked by uid 500); 11 Jun 2014 19:26:59 -0000 Delivered-To: apmail-avro-commits-archive@avro.apache.org Received: (qmail 52341 invoked by uid 500); 11 Jun 2014 19:26:59 -0000 Mailing-List: contact commits-help@avro.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@avro.apache.org Delivered-To: mailing list commits@avro.apache.org Received: (qmail 52334 invoked by uid 99); 11 Jun 2014 19:26:59 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Jun 2014 19:26:59 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 11 Jun 2014 19:26:59 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 085272388906; Wed, 11 Jun 2014 19:26:35 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1601994 - in /avro/trunk: CHANGES.txt lang/perl/t/00_compile.t lang/perl/t/01_names.t lang/perl/t/02_bin_encode.t lang/perl/t/03_bin_decode.t lang/perl/t/04_datafile.t lang/perl/t/05_protocol.t Date: Wed, 11 Jun 2014 19:26:34 -0000 To: commits@avro.apache.org From: cutting@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140611192635.085272388906@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: cutting Date: Wed Jun 11 19:26:34 2014 New Revision: 1601994 URL: http://svn.apache.org/r1601994 Log: AVRO-1513. Perl: Remove test plans from unit test files. Contributed by John Karp. Modified: avro/trunk/CHANGES.txt avro/trunk/lang/perl/t/00_compile.t avro/trunk/lang/perl/t/01_names.t avro/trunk/lang/perl/t/02_bin_encode.t avro/trunk/lang/perl/t/03_bin_decode.t avro/trunk/lang/perl/t/04_datafile.t avro/trunk/lang/perl/t/05_protocol.t Modified: avro/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/avro/trunk/CHANGES.txt?rev=1601994&r1=1601993&r2=1601994&view=diff ============================================================================== --- avro/trunk/CHANGES.txt (original) +++ avro/trunk/CHANGES.txt Wed Jun 11 19:26:34 2014 @@ -81,6 +81,9 @@ Trunk (not yet released) AVRO-1500. Java: Fix bug in handling of Thrift shorts in unions. (Michael Pershyn via cutting) + AVRO-1513. Perl: Remove test plans from unit test files. + (John Karp via cutting) + Avro 1.7.6 (15 January 2014) NEW FEATURES Modified: avro/trunk/lang/perl/t/00_compile.t URL: http://svn.apache.org/viewvc/avro/trunk/lang/perl/t/00_compile.t?rev=1601994&r1=1601993&r2=1601994&view=diff ============================================================================== --- avro/trunk/lang/perl/t/00_compile.t (original) +++ avro/trunk/lang/perl/t/00_compile.t Wed Jun 11 19:26:34 2014 @@ -16,6 +16,8 @@ # under the License. use strict; -use Test::More tests => 1; +use Test::More; BEGIN { use_ok 'Avro' } + +done_testing; Modified: avro/trunk/lang/perl/t/01_names.t URL: http://svn.apache.org/viewvc/avro/trunk/lang/perl/t/01_names.t?rev=1601994&r1=1601993&r2=1601994&view=diff ============================================================================== --- avro/trunk/lang/perl/t/01_names.t (original) +++ avro/trunk/lang/perl/t/01_names.t Wed Jun 11 19:26:34 2014 @@ -19,7 +19,6 @@ use strict; use warnings; use Test::More; -plan tests => 95; use Test::Exception; use_ok 'Avro::Schema'; Modified: avro/trunk/lang/perl/t/02_bin_encode.t URL: http://svn.apache.org/viewvc/avro/trunk/lang/perl/t/02_bin_encode.t?rev=1601994&r1=1601993&r2=1601994&view=diff ============================================================================== --- avro/trunk/lang/perl/t/02_bin_encode.t (original) +++ avro/trunk/lang/perl/t/02_bin_encode.t Wed Jun 11 19:26:34 2014 @@ -21,7 +21,7 @@ use strict; use warnings; use Avro::Schema; use Config; -use Test::More tests => 24; +use Test::More; use Test::Exception; use Math::BigInt; Modified: avro/trunk/lang/perl/t/03_bin_decode.t URL: http://svn.apache.org/viewvc/avro/trunk/lang/perl/t/03_bin_decode.t?rev=1601994&r1=1601993&r2=1601994&view=diff ============================================================================== --- avro/trunk/lang/perl/t/03_bin_decode.t (original) +++ avro/trunk/lang/perl/t/03_bin_decode.t Wed Jun 11 19:26:34 2014 @@ -21,7 +21,7 @@ use strict; use warnings; use Avro::Schema; use Avro::BinaryEncoder; -use Test::More tests => 21; +use Test::More; use Test::Exception; use IO::String; Modified: avro/trunk/lang/perl/t/04_datafile.t URL: http://svn.apache.org/viewvc/avro/trunk/lang/perl/t/04_datafile.t?rev=1601994&r1=1601993&r2=1601994&view=diff ============================================================================== --- avro/trunk/lang/perl/t/04_datafile.t (original) +++ avro/trunk/lang/perl/t/04_datafile.t Wed Jun 11 19:26:34 2014 @@ -25,7 +25,7 @@ use Avro::BinaryDecoder; use Avro::Schema; use File::Temp; use Test::Exception; -use Test::More tests => 12; +use Test::More; use_ok 'Avro::DataFileReader'; use_ok 'Avro::DataFileWriter'; Modified: avro/trunk/lang/perl/t/05_protocol.t URL: http://svn.apache.org/viewvc/avro/trunk/lang/perl/t/05_protocol.t?rev=1601994&r1=1601993&r2=1601994&view=diff ============================================================================== --- avro/trunk/lang/perl/t/05_protocol.t (original) +++ avro/trunk/lang/perl/t/05_protocol.t Wed Jun 11 19:26:34 2014 @@ -20,7 +20,7 @@ use strict; use warnings; use Test::Exception; -use Test::More tests => 18; +use Test::More; use_ok 'Avro::Protocol';