Skip to content

Commit

Permalink
[tests] Append flavor to result file name during fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
pjcollins committed Jun 5, 2019
1 parent daeff30 commit 4a69f19
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ string GetFixedUpPath (string source, string testNameSuffix)
{
var destFilename = Path.GetFileNameWithoutExtension (source) +
(string.IsNullOrWhiteSpace (Configuration) ? "" : "-" + Configuration) +
(string.IsNullOrWhiteSpace (TestsFlavor) ? "" : TestsFlavor) +
Path.GetExtension (source);
var dest = Path.Combine (DestinationFolder, destFilename);
return dest;
Expand Down

0 comments on commit 4a69f19

Please sign in to comment.