From owner-svn-src-stable@FreeBSD.ORG Sun Oct 27 22:18:28 2013 Return-Path: Delivered-To: svn-src-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 32275742; Sun, 27 Oct 2013 22:18:28 +0000 (UTC) (envelope-from jilles@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 057552121; Sun, 27 Oct 2013 22:18:28 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r9RMIRH5056807; Sun, 27 Oct 2013 22:18:27 GMT (envelope-from jilles@svn.freebsd.org) Received: (from jilles@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r9RMIRV4056803; Sun, 27 Oct 2013 22:18:27 GMT (envelope-from jilles@svn.freebsd.org) Message-Id: <201310272218.r9RMIRV4056803@svn.freebsd.org> From: Jilles Tjoelker Date: Sun, 27 Oct 2013 22:18:27 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r257232 - stable/9/tools/regression/lib/libc/stdio X-SVN-Group: stable-9 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-stable@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for all the -stable branches of the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 27 Oct 2013 22:18:28 -0000 Author: jilles Date: Sun Oct 27 22:18:27 2013 New Revision: 257232 URL: http://svnweb.freebsd.org/changeset/base/257232 Log: MFC r255301: libc/stdio: Provide proper TAP output for fmemopen/ open_memstream/open_wmemstream. A *.t file should provide Test Anything Protocol output so that it can be run using the Perl "prove" tool. Modified: stable/9/tools/regression/lib/libc/stdio/test-fmemopen.t stable/9/tools/regression/lib/libc/stdio/test-open_memstream.t stable/9/tools/regression/lib/libc/stdio/test-open_wmemstream.t Directory Properties: stable/9/tools/regression/lib/libc/ (props changed) Modified: stable/9/tools/regression/lib/libc/stdio/test-fmemopen.t ============================================================================== --- stable/9/tools/regression/lib/libc/stdio/test-fmemopen.t Sun Oct 27 22:15:50 2013 (r257231) +++ stable/9/tools/regression/lib/libc/stdio/test-fmemopen.t Sun Oct 27 22:18:27 2013 (r257232) @@ -7,4 +7,9 @@ executable=`basename $0 .t` make $executable 2>&1 > /dev/null -exec ./$executable +echo 1..1 +if ./$executable; then + echo ok 1 - $executable successful +else + echo not ok 1 - $executable failed +fi Modified: stable/9/tools/regression/lib/libc/stdio/test-open_memstream.t ============================================================================== --- stable/9/tools/regression/lib/libc/stdio/test-open_memstream.t Sun Oct 27 22:15:50 2013 (r257231) +++ stable/9/tools/regression/lib/libc/stdio/test-open_memstream.t Sun Oct 27 22:18:27 2013 (r257232) @@ -7,4 +7,9 @@ executable=`basename $0 .t` make $executable 2>&1 > /dev/null -exec ./$executable +echo 1..1 +if ./$executable; then + echo ok 1 - $executable successful +else + echo not ok 1 - $executable failed +fi Modified: stable/9/tools/regression/lib/libc/stdio/test-open_wmemstream.t ============================================================================== --- stable/9/tools/regression/lib/libc/stdio/test-open_wmemstream.t Sun Oct 27 22:15:50 2013 (r257231) +++ stable/9/tools/regression/lib/libc/stdio/test-open_wmemstream.t Sun Oct 27 22:18:27 2013 (r257232) @@ -7,4 +7,9 @@ executable=`basename $0 .t` make $executable 2>&1 > /dev/null -exec ./$executable +echo 1..1 +if ./$executable; then + echo ok 1 - $executable successful +else + echo not ok 1 - $executable failed +fi