Re: 8238953: tools/jpackage tests do not work on Ubuntu Linux

2020-02-20 Thread Alexey Semenyuk
Looks good! - Alexey On 2/20/2020 9:53 AM, Baesken, Matthias wrote: Thanks, just posted 8238947: tools/jpackage tests fail with old rpmbuild versions https://bugs.openjdk.java.net/browse/JDK-8238947 http://cr.openjdk.java.net/~mbaesken/webrevs/8238947.0/ Best regards, Matthias There is

Re: 8238953: tools/jpackage tests do not work on Ubuntu Linux

2020-02-19 Thread Alexey Semenyuk
Christoph -Original Message- From: Baesken, Matthias Sent: Dienstag, 18. Februar 2020 16:55 To: Langer, Christoph ; core-libs- d...@openjdk.java.net; Alexey Semenyuk Subject: RE: 8238953: tools/jpackage tests do not work on Ubuntu Linux Ok why not, new webrev : http://cr.openjdk.j

RE: 8238953: tools/jpackage tests do not work on Ubuntu Linux

2020-02-19 Thread Baesken, Matthias
;disabledPackagers")).orElse( > >>> TKit.isUbuntu() ? Set.of("rpm") : > >>> Collections.emptySet()); > >>> > >>> Best regards > >>> Christoph > >>> > >>>> -Original Message- &g

Re: 8238953: tools/jpackage tests do not work on Ubuntu Linux

2020-02-18 Thread Alexey Semenyuk
: 8238953: tools/jpackage tests do not work on Ubuntu Linux Ok why not, new webrev : http://cr.openjdk.java.net/~mbaesken/webrevs/8238953.2/ Thanks, Matthias Hi Matthias, you could improve the patch a bit by starting TKit:: isUbuntu() with if (!isLinux()) { return false; } And then

RE: 8238953: tools/jpackage tests do not work on Ubuntu Linux

2020-02-18 Thread Langer, Christoph
Hi Matthias, Looks good to me now. Cheers Christoph > -Original Message- > From: Baesken, Matthias > Sent: Dienstag, 18. Februar 2020 16:55 > To: Langer, Christoph ; core-libs- > d...@openjdk.java.net; Alexey Semenyuk > Subject: RE: 8238953: tools/jpackage tests do

RE: 8238953: tools/jpackage tests do not work on Ubuntu Linux

2020-02-18 Thread Baesken, Matthias
regards > Christoph > > > -Original Message- > > From: core-libs-dev On Behalf > > Of Baesken, Matthias > > Sent: Dienstag, 18. Februar 2020 09:14 > > To: core-libs-dev@openjdk.java.net; Alexey Semenyuk > > > > Subject: [CAUTION] RE:

Re: RFR: 8238953: tools/jpackage tests do not work on Ubuntu Linux

2020-02-18 Thread Andy Herrick
: Thu, 13 Feb 2020 08:06:44 -0800 From: Alexey Semenyuk To: core-libs-dev@openjdk.java.net Subject: Re: RFR: 8238953: tools/jpackage tests do not work on Ubuntu Linux Message-ID: <0400cf9e-df43-b217-26b0-f9bb0fd1a...@oracle.com> Content-Type: text/plain; charset=utf-8; format=flow

RE: 8238953: tools/jpackage tests do not work on Ubuntu Linux

2020-02-18 Thread Langer, Christoph
v@openjdk.java.net; Alexey Semenyuk > > Subject: [CAUTION] RE: 8238953: tools/jpackage tests do not work on > Ubuntu Linux > > Ping ... are you fine with the latest version ? > > Best Regards, Matthias > > > > > Hi Alexey , I like your idea to do the handling in

RE: 8238953: tools/jpackage tests do not work on Ubuntu Linux

2020-02-18 Thread Baesken, Matthias
Ping ... are you fine with the latest version ? Best Regards, Matthias > > Hi Alexey , I like your idea to do the handling in > test/jdk/tools/jpackage/helpers/jdk/jpackage/test/PackageType.java . > > New webrev : > > http://cr.openjdk.java.net/~mbaesken/webrevs/8238953.1/ > > > > Best r

RE: 8238953: tools/jpackage tests do not work on Ubuntu Linux

2020-02-14 Thread Baesken, Matthias
pers/jdk/jpackage/test/PackageType.java . > > New webrev : > > http://cr.openjdk.java.net/~mbaesken/webrevs/8238953.1/ > > > > Best regards, Matthias > > > > Date: Thu, 13 Feb 2020 08:06:44 -0800 > > From: Alexey Semenyuk > > To: core-libs-dev@ope

RFR: 8238953: tools/jpackage tests do not work on Ubuntu Linux

2020-02-14 Thread Baesken, Matthias
To: core-libs-dev@openjdk.java.net > Subject: Re: RFR: 8238953: tools/jpackage tests do not work on Ubuntu > Linux > Message-ID: <0400cf9e-df43-b217-26b0-f9bb0fd1a...@oracle.com> > Content-Type: text/plain; charset=utf-8; format=flowed > &g

Re: RFR: 8238953: tools/jpackage tests do not work on Ubuntu Linux

2020-02-13 Thread Alexey Semenyuk
Hi Matthias, We don't set "jpackage.test.disabledPackagers" property from the test code. It is assumed to be set from jtreg command line that runs tests. The value of the property is just checked in tests. So basically there is no need to change code at all. However, if you want to disable run

RFR: 8238953: tools/jpackage tests do not work on Ubuntu Linux

2020-02-12 Thread Baesken, Matthias
Hello, please review this small test related change . Currently (most of the) tools/jpackage tests do not work on Ubuntu Linux . Reason is that the rpm parts of the jpackage tests do not pass on this distro . The rpm tests can be disabled by this property : > > > > Do you expect those