Skip to content

Commit 09f5194

Browse files
committedFeb 18, 2020
8238953: tools/jpackage tests do not work on Ubuntu Linux
Reviewed-by: asemenyuk, clanger
1 parent 7f3bbc3 commit 09f5194

File tree

2 files changed

+27
-4
lines changed

2 files changed

+27
-4
lines changed
 

‎test/jdk/tools/jpackage/helpers/jdk/jpackage/test/PackageType.java

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -117,9 +117,8 @@ private static boolean isBundlerSupported(String bundlerClass) {
117117
MAC.stream()).collect(Collectors.toUnmodifiableSet());
118118

119119
private final static class Inner {
120-
121120
private final static Set<String> DISABLED_PACKAGERS = Optional.ofNullable(
122121
TKit.tokenizeConfigProperty("disabledPackagers")).orElse(
123-
Collections.emptySet());
122+
TKit.isUbuntu() ? Set.of("rpm") : Collections.emptySet());
124123
}
125124
}

‎test/jdk/tools/jpackage/helpers/jdk/jpackage/test/TKit.java

+25-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019, 2020, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -22,7 +22,10 @@
2222
*/
2323
package jdk.jpackage.test;
2424

25+
import java.io.BufferedReader;
26+
import java.io.File;
2527
import java.io.FileOutputStream;
28+
import java.io.FileReader;
2629
import java.io.IOException;
2730
import java.io.PrintStream;
2831
import java.lang.reflect.InvocationTargetException;
@@ -178,6 +181,27 @@ public static boolean isLinux() {
178181
return ((OS.contains("nix") || OS.contains("nux")));
179182
}
180183

184+
public static boolean isUbuntu() {
185+
if (!isLinux()) {
186+
return false;
187+
}
188+
File releaseFile = new File("/etc/os-release");
189+
if (releaseFile.exists()) {
190+
try (BufferedReader lineReader = new BufferedReader(new FileReader(releaseFile))) {
191+
String lineText = null;
192+
while ((lineText = lineReader.readLine()) != null) {
193+
if (lineText.indexOf("NAME=\"Ubuntu") != -1) {
194+
lineReader.close();
195+
return true;
196+
}
197+
}
198+
} catch (IOException e) {
199+
e.printStackTrace();
200+
}
201+
}
202+
return false;
203+
}
204+
181205
static void log(String v) {
182206
System.out.println(v);
183207
if (extraLogStream != null) {

0 commit comments

Comments
 (0)
Please sign in to comment.