[Patch v2 04/11] perf-test: optionally print description for each group of tests

Austin Clements aclements at csail.mit.edu
Mon Dec 10 20:31:15 PST 2012


On Wed, 05 Dec 2012, david at tethera.net wrote:
> From: David Bremner <bremner at debian.org>
>
> Output from tests is indented slightly in the same style as the
> correctness tests.
> ---
>  performance-test/perf-test-lib.sh |    9 +++++++--
>  1 file changed, 7 insertions(+), 2 deletions(-)
>
> diff --git a/performance-test/perf-test-lib.sh b/performance-test/perf-test-lib.sh
> index e399d3f..415bf15 100644
> --- a/performance-test/perf-test-lib.sh
> +++ b/performance-test/perf-test-lib.sh
> @@ -67,12 +67,12 @@ add_email_corpus ()
>  }
>  
>  print_header () {
> -    printf "[v%4s %6s]        Wall(s)\tUsr(s)\tSys(s)\tRes(K)\tIn/Out(512B)\n" \
> +    printf "[v%4s %6s]          Wall(s)\tUsr(s)\tSys(s)\tRes(K)\tIn/Out(512B)\n" \
>  	   ${PERFTEST_VERSION} ${corpus_size}
>  }
>  
>  time_run () {
> -    printf "%-22s" "$1"
> +    printf "  %-22s" "$1"
>      if test "$verbose" != "t"; then exec 4>test.output 3>&4; fi
>      if ! eval >&3 "/usr/bin/time -f '%e\t%U\t%S\t%M\t%I/%O' $2" ; then
>  	test_failure=$(($test_failure + 1))
> @@ -92,3 +92,8 @@ time_done () {
>  
>  cd -P "$test" || error "Cannot setup test environment"
>  test_failure=0
> +
> +if [[ -n "test_description" ]]; then

I think you meant "$test_description".  Though, it seems like it would
be confusing if $test_description wasn't set and there was no output.
Maybe this shouldn't be conditional and below should be
${test_description:-UNNAMED} or something?

> +    echo
> +    echo $(basename "$0"): "Benchmarking ${test_description}"
> +fi
> -- 
> 1.7.10.4
>
> _______________________________________________
> notmuch mailing list
> notmuch at notmuchmail.org
> http://notmuchmail.org/mailman/listinfo/notmuch


More information about the notmuch mailing list