Skip to content

Commit

Permalink
Use -unicode instead of /unicode for linux ildasm roundtrip tests (
Browse files Browse the repository at this point in the history
…dotnet#71958)

Use `-unicode` instead of `/unicode` for linux ildasm roundtrip tests
  • Loading branch information
TIHan committed Jul 14, 2022
1 parent 125b73e commit 35f0230
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/Common/CLRTest.Jit.targets
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ export RunningIlasmRoundTrip=
if [ -z "$DoLink" -a ! -z "$RunningIlasmRoundTrip" ];
then
echo "$CORE_ROOT/ildasm" -raweh /unicode -out=$(DisassemblyName) $(InputAssemblyName)
"$CORE_ROOT/ildasm" -raweh /unicode -out=$(DisassemblyName) $(InputAssemblyName)
echo "$CORE_ROOT/ildasm" -raweh -unicode -out=$(DisassemblyName) $(InputAssemblyName)
"$CORE_ROOT/ildasm" -raweh -unicode -out=$(DisassemblyName) $(InputAssemblyName)
ERRORLEVEL=$?
if [ $ERRORLEVEL -ne 0 ]
then
Expand Down

0 comments on commit 35f0230

Please sign in to comment.