From owner-svn-src-head@FreeBSD.ORG Sat May 2 12:19:25 2015 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 54AE7DDE; Sat, 2 May 2015 12:19:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 43311136C; Sat, 2 May 2015 12:19:25 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t42CJPjC031110; Sat, 2 May 2015 12:19:25 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t42CJPfp031109; Sat, 2 May 2015 12:19:25 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201505021219.t42CJPfp031109@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 2 May 2015 12:19:25 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r282341 - head/usr.bin/col/tests X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 02 May 2015 12:19:25 -0000 Author: bapt Date: Sat May 2 12:19:24 2015 New Revision: 282341 URL: https://svnweb.freebsd.org/changeset/base/282341 Log: Actually push the right tests Modified: head/usr.bin/col/tests/col.sh Modified: head/usr.bin/col/tests/col.sh ============================================================================== --- head/usr.bin/col/tests/col.sh Sat May 2 12:18:28 2015 (r282340) +++ head/usr.bin/col/tests/col.sh Sat May 2 12:19:24 2015 (r282341) @@ -15,22 +15,16 @@ rlf_body() col < $(atf_get_srcdir)/rlf.in atf_check \ - -o inline:"a b3\n" \ + -o inline:"a b\n" \ -e empty \ -s exit:0 \ col < $(atf_get_srcdir)/rlf2.in atf_check \ - -o inline:"a b3\n" \ + -o inline:"a b\n" \ -e empty \ -s exit:0 \ col -x < $(atf_get_srcdir)/rlf2.in - - atf_check \ - -o inline:"a b3\n" \ - -e empty \ - -s exit:0 \ - col -p < $(atf_get_srcdir)/rlf2.in } atf_init_test_cases()