Skip to content

Commit

Permalink
test-setup: remove leading "./" from test name
Browse files Browse the repository at this point in the history
Fixes release-blocking regression bazelbuild#5079

Change-Id: I26202d571d53cd843d559b86d849d29173df4015

Closes bazelbuild#5083.

Change-Id: I26202d571d53cd843d559b86d849d29173df4015
PiperOrigin-RevId: 194068956
  • Loading branch information
laszlocsomor authored and Copybara-Service committed Apr 24, 2018
1 parent 8b33784 commit 2c95757
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/test/test-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -201,10 +201,10 @@ EOF
PATH=".:$PATH"

if [ -z "$COVERAGE_DIR" ]; then
EXE="$1"
EXE="${1#./}"
shift
else
EXE="$2"
EXE="${2#./}"
fi

if is_absolute "$EXE"; then
Expand Down

0 comments on commit 2c95757

Please sign in to comment.