Re: LocalDateTimeStringConverterTest seem to fail if default locale is different to en_US

2016-06-20 Thread Kevin Rushforth
Hi Alexander, You will need to file a WebBug at http://bugreport.java.com/ . The other failures are likely due to an out-of-date libjfxwebkit.dylib. The native webkit build isn't enabled by default and most developers don't build it, so when you build FX it will take it from your boot JDK. Yo

Re: LocalDateTimeStringConverterTest seem to fail if default locale is different to en_US

2016-06-18 Thread Alexander Nyssen
Hi Kevin, > Am 17.06.2016 um 17:44 schrieb Kevin Rushforth : > > It seems like the test is not written to handle multiple Locales, so if you > could file a bug, we'll fix it (I note that it could probably be in a > "BeforeClass" block as one-time setup rather than setting it before each > test

Re: LocalDateTimeStringConverterTest seem to fail if default locale is different to en_US

2016-06-17 Thread Kevin Rushforth
It seems like the test is not written to handle multiple Locales, so if you could file a bug, we'll fix it (I note that it could probably be in a "BeforeClass" block as one-time setup rather than setting it before each test). As for your other test failures, I presume you are using FX 9-dev? A

Re: LocalDateTimeStringConverterTest seem to fail if default locale is different to en_US

2016-06-17 Thread Alexander Nyssen
Hi, I could resolve this by changing the setup method of LocalDateTimeStringConverterTest to the following: @Before public void setup() { // tests require that default locale is English Locale.setDefault(Locale.ENGLISH); } Maybe that should be added to make it robust. Unfortunately, I a

LocalDateTimeStringConverterTest seem to fail if default locale is different to en_US

2016-06-16 Thread Alexander Nyssen
Hi, in order to be able to contribute to OpenJFX, I am currently trying to set up my development environment. After checking out the latest head from hg clone http://hg.openjdk.java.net/openjfx/9-dev/rt , compilation succeeds, but tests fail with th