author | rupashka |
Mon, 17 May 2010 17:23:18 +0400 | |
changeset 5581 | 9c2282c6f080 |
parent 2799 | 0441b5d34aa0 |
child 5506 | 202f599c92aa |
permissions | -rw-r--r-- |
2 | 1 |
/* |
2 |
* Copyright (c) 2007 Sun Microsystems, Inc. All Rights Reserved. |
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
|
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
7 |
* published by the Free Software Foundation. |
|
8 |
* |
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
13 |
* accompanied this code). |
|
14 |
* |
|
15 |
* You should have received a copy of the GNU General Public License version |
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
18 |
* |
|
19 |
* Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara, |
|
20 |
* CA 95054 USA or visit www.sun.com if you need additional information or |
|
21 |
* have any questions. |
|
22 |
*/ |
|
23 |
/** |
|
24 |
* @test |
|
25 |
* @bug 4126805 |
|
2799
0441b5d34aa0
6842023: Improve test reliability, Increase timeout factor on jtreg tests, etc.
ohair
parents:
2
diff
changeset
|
26 |
* @ignore until 6842022 is resolved |
2 | 27 |
* @run applet RestrictedBundleTest.html |
28 |
* @summary I was able to reproduce this bug with 1.2b2, but not with the current 1.2 |
|
29 |
* build. It appears that it was fixed by changes to the class-loading mechanism, |
|
30 |
* which now throws a ClassNotFoundException where before it was propagating through |
|
31 |
* a bogus ClassFormatError. Therefore, this is just an additional regression test |
|
32 |
* for whatever bug that was. |
|
33 |
*/ |
|
34 |
||
35 |
import java.util.ResourceBundle; |
|
36 |
import java.applet.Applet; |
|
37 |
import java.util.MissingResourceException; |
|
38 |
||
39 |
public class RestrictedBundleTest extends Applet { |
|
40 |
public void init() { |
|
41 |
super.init(); |
|
42 |
try { |
|
43 |
ResourceBundle bundle = ResourceBundle.getBundle("unavailable.base.name"); |
|
44 |
||
45 |
throw new RuntimeException("Error: MissingResourceException is not thrown"); |
|
46 |
} |
|
47 |
catch (MissingResourceException e) { |
|
48 |
// other types of error will propagate back out into the test harness |
|
49 |
System.out.println("OK"); |
|
50 |
} |
|
51 |
} |
|
52 |
} |