Skip to content

Commit

Permalink
Fix Linux tests mainv1, mainv2 (dotnet#1790)
Browse files Browse the repository at this point in the history
Don't use CR in Unix bash scripts.

This appears to be fallout from dotnet#583, which added a
second variable that then created a need to add newlines.
  • Loading branch information
BruceForstall authored Jan 16, 2020
1 parent 8d817ee commit 216a5d5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/tests/src/CLRTest.Execute.Bash.targets
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ CLRTestExpectedExitCode=0

<PropertyGroup>
<BashEnvironmentVariables>
@(CLRTestBashEnvironmentVariable -> '%(Identity)', '%0d%0a')
@(CLRTestBashEnvironmentVariable -> '%(Identity)', '%0a')
</BashEnvironmentVariables>
</PropertyGroup>

Expand Down

0 comments on commit 216a5d5

Please sign in to comment.