diff --git a/tools/test-driver-teamcity b/tools/test-driver-teamcity index 1d322b5ed..dd77aa751 100755 --- a/tools/test-driver-teamcity +++ b/tools/test-driver-teamcity @@ -1,7 +1,7 @@ #! /bin/sh # test-driver - basic testsuite driver script. -scriptversion=2013-07-26.06; # UTC +scriptversion=2016-01-05.14; # UTC # Copyright (C) 2011-2013 Free Software Foundation, Inc. # @@ -61,7 +61,7 @@ while test $# -gt 0; do case $1 in --help) print_usage; exit $?;; --version) echo "test-driver $scriptversion"; exit $?;; - --test-name) test_name=${PWD##*/}/$2; shift;; + --test-name) test_name=$2; shift;; --log-file) log_file=$2; shift;; --trs-file) trs_file=$2; shift;; --color-tests) color_tests=$2; shift;;