-
Bug
-
Resolution: Fixed
-
P4
-
5.0u15-rev
-
b12
-
generic
-
generic
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2203492 | 5.0u17 | Abhijit Saha | P4 | Resolved | Fixed | b04 |
JDK-2203491 | 5.0u16-rev | Abhijit Saha | P4 | Resolved | Fixed | b03 |
Regression test suite, for 5.0u15-rev-b11
j2se/java/util/Currency/ValidateISO4217.java Failed. It was current, But test has <Passed.> on previous update
This test tested Currency for different countries, and supposed that Cyprys and Malta has own currency, but now, and in jdk5.0u15-rev-b11 supposed that currency for Cyprys and Malta is EUR. Test should be changed according to today situation of currency.
Header of test:
/*
* @test 1.4 05/09/02
* @bug 4819436 4942982 5104960
* @summary Validate ISO 4217 data for Currency class.
*/
To check you can compile and run such code:
import java.io.*;
import java.text.*;
import java.util.*;
public class validate{
public static void main(String[] args) throws Exception {
System.out.println("What test need:");
System.out.println("//country=MT currencyCode=MTL digits=2 index=331");
System.out.println("//country=CY currencyCode=CYP digits=2 index=76");
System.out.println("What java has:");
Locale loc = new Locale("", "MT");
Currency currency = Currency.getInstance(loc);
System.out.println("currencyCode for MT = " + currency.getCurrencyCode());
loc = new Locale("", "CY");
currency = Currency.getInstance(loc);
System.out.println("currencyCode for CY = " + currency.getCurrencyCode());
}
}
What produced with this code:
/*
What test need:
//country=MT currencyCode=MTL digits=2 index=331
//country=CY currencyCode=CYP digits=2 index=76
What java has:
currencyCode for MT = EUR
currencyCode for CY = EUR
*/
So MTL and CYP should be changed to EUR
j2se/java/util/Currency/ValidateISO4217.java Failed. It was current, But test has <Passed.> on previous update
This test tested Currency for different countries, and supposed that Cyprys and Malta has own currency, but now, and in jdk5.0u15-rev-b11 supposed that currency for Cyprys and Malta is EUR. Test should be changed according to today situation of currency.
Header of test:
/*
* @test 1.4 05/09/02
* @bug 4819436 4942982 5104960
* @summary Validate ISO 4217 data for Currency class.
*/
To check you can compile and run such code:
import java.io.*;
import java.text.*;
import java.util.*;
public class validate{
public static void main(String[] args) throws Exception {
System.out.println("What test need:");
System.out.println("//country=MT currencyCode=MTL digits=2 index=331");
System.out.println("//country=CY currencyCode=CYP digits=2 index=76");
System.out.println("What java has:");
Locale loc = new Locale("", "MT");
Currency currency = Currency.getInstance(loc);
System.out.println("currencyCode for MT = " + currency.getCurrencyCode());
loc = new Locale("", "CY");
currency = Currency.getInstance(loc);
System.out.println("currencyCode for CY = " + currency.getCurrencyCode());
}
}
What produced with this code:
/*
What test need:
//country=MT currencyCode=MTL digits=2 index=331
//country=CY currencyCode=CYP digits=2 index=76
What java has:
currencyCode for MT = EUR
currencyCode for CY = EUR
*/
So MTL and CYP should be changed to EUR
- backported by
-
JDK-2203491 Test has old currency for Cyprus and Malta
-
- Resolved
-
-
JDK-2203492 Test has old currency for Cyprus and Malta
-
- Resolved
-