summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMarc Hoersken <info@marc-hoersken.de>2020-09-06 21:27:41 +0200
committerMarc Hoersken <info@marc-hoersken.de>2020-09-07 07:42:30 +0200
commite089704a0f168f44231e82a7c0d01ac4da81b953 (patch)
tree7401bce9b339acd5775a91591d9cc6d18327c303 /tests
parentf93455eb04b57b2d002244bed1f0b59b94c2f0c7 (diff)
downloadcurl-e089704a0f168f44231e82a7c0d01ac4da81b953.tar.gz
CI/azure: add test number to title for display in analytics
To ease identification of tests the test number is added to the test case title in order to have it on the Azure DevOps Analytics pages and reports which currently do not show it. Bump test case revision to make Azure DevOps update titles. Closes #5927
Diffstat (limited to 'tests')
-rw-r--r--tests/azure.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/azure.pm b/tests/azure.pm
index 004c3d309..ffcd165f2 100644
--- a/tests/azure.pm
+++ b/tests/azure.pm
@@ -60,6 +60,7 @@ sub azure_create_test_result {
$testname =~ s/\\/\\\\/g;
$testname =~ s/\'/\\\'/g;
$testname =~ s/\"/\\\"/g;
+ my $title_testnum=sprintf("%04d", $testnum);
my $azure_baseurl="$ENV{'SYSTEM_TEAMFOUNDATIONCOLLECTIONURI'}$ENV{'SYSTEM_TEAMPROJECTID'}";
my $azure_result=`curl --silent --noproxy "*" \\
--header "Authorization: Bearer $ENV{'AZURE_ACCESS_TOKEN'}" \\
@@ -69,7 +70,8 @@ sub azure_create_test_result {
{
'build': {'id': '$ENV{'BUILD_BUILDID'}'},
'testCase': {'id': $testnum},
- 'testCaseTitle': '$testname',
+ 'testCaseTitle': '$title_testnum: $testname',
+ 'testCaseRevision': 2,
'automatedTestName': 'curl.tests.$testnum',
'outcome': 'InProgress'
}