Skip to content

Commit

Permalink
Fix Native2AsciiTests.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
ktakakuri committed Nov 29, 2023
1 parent 2f81fb4 commit d29d1e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jdk/test/sun/tools/native2ascii/Native2AsciiTests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ check() {
# Strip carriage returns from output when comparing with n2a test output
# on win32 systems
if [ ${OS} = Windows ]; then
sed -e 's@\\r@@g' $out >$out.1
sed -e 's@\\r@@g' $expected >$out.expected
sed -e 's@\r@@g' $out >$out.1
sed -e 's@\r@@g' $expected >$out.expected
else
cp $out $out.1
cp $expected $out.expected
Expand Down

0 comments on commit d29d1e5

Please sign in to comment.