Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
da1ee10d
Commit
da1ee10d
authored
Mar 05, 2000
by
Anthony Green
Committed by
Anthony Green
Mar 05, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
New test code.
From-SVN: r32336
parent
7470e8d7
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
0 deletions
+40
-0
libjava/testsuite/ChangeLog
+5
-0
libjava/testsuite/libjava.lang/PR160.java
+34
-0
libjava/testsuite/libjava.lang/PR160.out
+1
-0
No files found.
libjava/testsuite/ChangeLog
View file @
da1ee10d
2000-03-04 Anthony Green <green@redhat.com>
* libjava.lang/PR160.java: New file.
* libjava.lang/PR160.out: New file.
2000-02-28 Mo DeJong <mdejong@cygnus.com>
* libjava.compile/static_inner.java: New file.
...
...
libjava/testsuite/libjava.lang/PR160.java
0 → 100644
View file @
da1ee10d
public
class
PR160
{
static
final
int
len
=
100
;
public
static
void
main
(
String
args
[])
{
double
[]
a
=
new
double
[
len
];
double
[]
b
=
new
double
[
len
];
for
(
int
i
=
0
;
i
<
len
;
i
++)
{
a
[
i
]
=
0.65
;
}
System
.
arraycopy
(
a
,
0
,
b
,
0
,
len
);
boolean
errors
=
false
;
for
(
int
i
=
0
;
i
<
len
;
i
++)
{
if
(
a
[
i
]
!=
b
[
i
])
{
System
.
out
.
println
(
"ERROR! "
+
a
[
i
]
+
" != "
+
b
[
i
]
+
" at index "
+
i
);
errors
=
true
;
}
}
if
(!
errors
)
System
.
out
.
println
(
"ok"
);
}
}
libjava/testsuite/libjava.lang/PR160.out
0 → 100644
View file @
da1ee10d
ok
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment