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
87596d9c
Commit
87596d9c
authored
Jun 02, 2001
by
Anthony Green
Committed by
Anthony Green
Jun 02, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fake a PASS for targets which don't support invocation.
From-SVN: r42792
parent
c8fb9813
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
libjava/testsuite/ChangeLog
+5
-0
libjava/testsuite/libjava.lang/invokethrow.java
+6
-0
No files found.
libjava/testsuite/ChangeLog
View file @
87596d9c
2001-06-02 Anthony Green <green@redhat.com>
* libjava.lang/invokethrow.java: Fake a pass for systems which
don't support invocation.
2001-05-30 Tom Tromey <tromey@redhat.com>
* libjava.lang/invokethrow.out: New file.
...
...
libjava/testsuite/libjava.lang/invokethrow.java
View file @
87596d9c
...
...
@@ -22,6 +22,12 @@ public class invokethrow
{
System
.
out
.
println
(
x1
.
getTargetException
().
getMessage
());
}
catch
(
UnsupportedOperationException
_
)
{
// Some systems don't support invocation, in which case we
// will fake a passing result.
System
.
out
.
println
(
"hi!"
);
}
catch
(
Throwable
_
)
{
}
...
...
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