-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
1.3.0
-
x86
-
linux
Name: skR10017 Date: 05/18/2000
The following test simply creates java.awt.Robot class. If executed under
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0beta-b05)
Java HotSpot(TM) Client VM (build 1.3.0beta-b03, mixed mode)
UnsatisfiedLinkError exception is thrown.
All DnD tests fail and some tests from awt_ws suite fail due to the same reason.
-------------------- test.java ---------------------
public class test
{
public static void main(String [] args) throws Exception
{
new java.awt.Robot();
}
}
--------------------- output ------------------------
[kotl@linux-4 Robot]$ java test
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Font specified in font.properties not found [--symbol-medium-r-normal--*-%d-*-*-p-*-adobe-fontspecific]
Exception in thread "main" java.lang.UnsatisfiedLinkError: buildChildProcessName
at sun.awt.motif.MRobotPeer.<clinit>(MRobotPeer.java:32)
at
at java.awt.Robot.<init>(Robot.java:73)
at test.main(test.java:6)
-----------------------------------------------------
The list of the awt_ws tests that fail:
DataTransfer/automated/CustomImageFlavor/CustomImageFlavorTest.html
DataTransfer/automated/FileTransfer/FileTransferTest.html
DataTransfer/automated/LocalObject/LocalObjectTest.html
Focus/automated/HeavyWeight/DisabledRequestFocus/DisabledRequestFocusTest.html
Focus/automated/HeavyWeight/KeyEventtoComponent/KeyEventtoComponentTest.html
Focus/automated/HeavyWeight/NextFocus/NextFocusTest.html
Focus/automated/HeavyWeight/RequestFocus/RequestFocusTest.html
Focus/automated/LightWeight/ClickOppositeWindows/ClickOppositeWindowsTest1/ClickOppositeWindowsTest1.html
Focus/automated/LightWeight/DisabledRequestFocus/DisabledRequestFocusTest.html
Focus/automated/LightWeight/KeyEventtoComponent/KeyEventtoComponentTest.html
Focus/automated/LightWeight/MoveAroundWindow/MoveAroundWindowTest.html
Focus/automated/LightWeight/MoveMouseandWindow/MoveMouseandWindowTest.html
Focus/automated/Mixed/ClickOppositeWindows/ClickOppositeWindowsTest1/ClickOppositeWindowsTest1.html
Focus/automated/Mixed/DisabledRequestFocus/DisabledRequestFocusTest.html
======================================================================
- duplicates
-
JDK-4331586 UnsatisfiedLinkError during invocation of java.awt.Robot.<init>
- Closed