From bf7df6203267a46161787d8e462fffeb4a1df955 Mon Sep 17 00:00:00 2001 From: Alexandre Duret-Lutz Date: Tue, 5 Jan 2016 15:50:16 +0100 Subject: [PATCH] * tools/test-driver-teamcity: Do not add tests/ in the output. --- tools/test-driver-teamcity | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;;