From c07ca509169d05fc155c700a9f88672016304a2a Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 12 Oct 2015 08:55:15 +0200 Subject: Make test script run quiet by default, add -v option for verbose --- bpkg/build.cxx | 25 ++++++++++------- bpkg/test.sh | 84 +++++++++++++++++++++++++++++++++++++++++++++++----------- 2 files changed, 84 insertions(+), 25 deletions(-) diff --git a/bpkg/build.cxx b/bpkg/build.cxx index 10f668b..07d1cf0 100644 --- a/bpkg/build.cxx +++ b/bpkg/build.cxx @@ -469,7 +469,8 @@ namespace bpkg // Now collect this prerequisite. If it was actually collected // (i.e., it wasn't already there) and we are forcing an upgrade, - // then warn. Downgrade -- outright refuse. + // then warn, unless we are running quiet. Downgrade -- outright + // refuse. // if (collect (options, cd, db, move (dp)) && force) { @@ -477,17 +478,21 @@ namespace bpkg const version& av (rp.first->version); bool u (av > sv); - bool c (d.constraint); - diag_record dr; - (u ? dr << warn : dr << fail) - << "package " << name << " dependency on " - << (c ? "(" : "") << d << (c ? ")" : "") << " is forcing " - << (u ? "up" : "down") << "grade of " << d.name << " " << sv - << " to " << av; + if (verb || !u) + { + bool c (d.constraint); + diag_record dr; + + (u ? dr << warn : dr << fail) + << "package " << name << " dependency on " + << (c ? "(" : "") << d << (c ? ")" : "") << " is forcing " + << (u ? "up" : "down") << "grade of " << d.name << " " << sv + << " to " << av; - if (!u) - dr << info << "explicitly specify version downgrade to continue"; + if (!u) + dr << info << "explicitly specify version downgrade to continue"; + } } } diff --git a/bpkg/test.sh b/bpkg/test.sh index 6e4d5de..d74c33b 100755 --- a/bpkg/test.sh +++ b/bpkg/test.sh @@ -1,11 +1,23 @@ #! /usr/bin/env bash +# -v Run verbose. By default, this script runs bpkg quiet and suppresses +# error messages in the fail tests. Note that when this options is +# specified, bpkg is called with default verbosity level. If you want +# more bpkg diagnostics, add the --verbose N option. +# + trap 'exit 1' ERR -bpkg="./bpkg $*" -#bpkg="valgrind -q ./bpkg $*" -#bpkg="./bpkg --fetch curl $*" -#bpkg="./bpkg --fetch fetch --tar bsdtar $*" +function error () +{ + echo "$*" 1>&2 + exit 1 +} + +bpkg="./bpkg" +#bpkg="valgrind -q ./bpkg" +#bpkg="./bpkg --fetch curl" +#bpkg="./bpkg --fetch fetch --tar bsdtar" cfg=/tmp/conf pkg=libhello ver=1.0.0 @@ -14,12 +26,32 @@ pkgd=../../hello/dist/$pkg-$ver out=$cfg/`basename $pkgd` rep=../../hello/1/hello -function error () -{ - echo "$*" 1>&2 - exit 1 -} +abs_rep=`realpath ../tests/repository/1` + +verbose=n +options= +while [ $# -gt 0 ]; do + case $1 in + -v) + verbose=y + shift + ;; + *) + options="$options $1" + shift + ;; + esac +done + +if [ "$verbose" != "y" ]; then + options="$options -q" +fi + +bpkg="$bpkg $options" + +# +# function test () { local cmd=$1; shift @@ -32,8 +64,8 @@ function test () if [ -t 0 ]; then $bpkg $cmd $ops $* else - # There is no way to get the exit code in process substiution - # so spoil the output. + # There is no way to get the exit code in process substitution + # so ruin the output. # diff -u - <($bpkg $cmd $ops $* || echo "") fi @@ -52,7 +84,11 @@ function fail () ops="-d $cfg" fi - $bpkg $cmd $ops $* + if [ "$verbose" = "y" ]; then + $bpkg $cmd $ops $* + else + $bpkg $cmd $ops $* 2>/dev/null + fi if [ $? -eq 0 ]; then error "succeeded: $bpkg $cmd $ops $*" @@ -108,9 +144,27 @@ test rep-create ../tests/repository/1/math/unstable fail rep-info # repository location expected -test rep-info ../tests/repository/1/misc/testing -test rep-info -m ../tests/repository/1/math/unstable -test rep-info http://pkg.cppget.org/1/hello +test rep-info ../tests/repository/1/misc/testing <