Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions jdk/test/sun/tools/native2ascii/Native2AsciiTests.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#! /bin/sh -e

#
# Copyright (c) 2002, 2011, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2002, 2024, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
Expand All @@ -25,6 +25,7 @@

# @test
# @bug 4630463 4630971 4636448 4701617 4721296 4710890 6247817 7021987 8067964
# 8320964
# @summary Tests miscellaneous native2ascii bugfixes and regressions


Expand All @@ -46,8 +47,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