summaryrefslogtreecommitdiff
path: root/.azure-pipelines/commands/i.sh
blob: 2b3eed038ba9dd8ae438d56695a07c91e7f8f7f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash
# Temporary script to support side-by-side testing for incidental code coverage.
# Once collection migration has been completed the incidental tests can be combined with the regular tests.

set -o pipefail -eux

declare -a args
IFS='/:' read -ra args <<< "$1"

script="${args[1]}"

IFS='/' test="${args[*]:1}"

".azure-pipelines/commands/incidental/${script}.sh" "${test}"