8033231: test fails with java.lang.UnsatisfiedLinkError

Reviewed-by: attila, sundar
This commit is contained in:
Matherey Nunez 2014-02-11 12:05:22 +01:00
parent 118cf2ba60
commit 615623c473
3 changed files with 41 additions and 5 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2010, 2014, 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
@ -28,5 +28,5 @@
* @run
*/
print(new java.awt.Color(1, 1, 1)) // creates Color[r=1,g=1,b=1]
print(new java.awt.Color(1.0, 1.0, 1.0)) // Color[r=255,g=255,b=255]
print(Java.type("jdk.nashorn.test.models.IntFloatOverloadSelection").overloadedMethod(1))
print(Java.type("jdk.nashorn.test.models.IntFloatOverloadSelection").overloadedMethod(1.0))

View File

@ -1,2 +1,2 @@
java.awt.Color[r=1,g=1,b=1]
java.awt.Color[r=255,g=255,b=255]
int
float

View File

@ -0,0 +1,36 @@
/*
* Copyright (c) 2014, 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
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package jdk.nashorn.test.models;
public class IntFloatOverloadSelection {
public static String overloadedMethod(int i) {
return "int";
}
public static String overloadedMethod(float f) {
return "float";
}
}