* tools/test-driver-teamcity: Do not add tests/ in the output.

This commit is contained in:
Alexandre Duret-Lutz 2016-01-05 15:50:16 +01:00
parent f08dbe7000
commit bf7df62032

View file

@ -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;;