Skip to content

Commit 64275e6

Browse files
committedSep 20, 2024
8340092: [Linux] containers/systemd/SystemdMemoryAwarenessTest.java failing on some systems
Reviewed-by: mbaesken
1 parent 5cffddc commit 64275e6

File tree

2 files changed

+68
-18
lines changed

2 files changed

+68
-18
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
#
2+
# Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
3+
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4+
#
5+
# This code is free software; you can redistribute it and/or modify it
6+
# under the terms of the GNU General Public License version 2 only, as
7+
# published by the Free Software Foundation.
8+
#
9+
# This code is distributed in the hope that it will be useful, but WITHOUT
10+
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12+
# version 2 for more details (a copy is included in the LICENSE file that
13+
# accompanied this code).
14+
#
15+
# You should have received a copy of the GNU General Public License version
16+
# 2 along with this work; if not, write to the Free Software Foundation,
17+
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18+
#
19+
# Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20+
# or visit www.oracle.com if you need additional information or have any
21+
# questions.
22+
#
23+
24+
exclusiveAccess.dirs=.

‎test/lib/jdk/test/lib/containers/systemd/SystemdTestUtils.java

+44-18
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import java.nio.file.Files;
2929
import java.nio.file.NoSuchFileException;
3030
import java.nio.file.Path;
31+
import java.nio.file.StandardOpenOption;
3132
import java.util.ArrayList;
3233
import java.util.Arrays;
3334
import java.util.List;
@@ -92,19 +93,23 @@ public static OutputAnalyzer buildAndRunSystemdJava(SystemdRunOptions opts) thro
9293
try {
9394
return SystemdTestUtils.systemdRunJava(opts);
9495
} finally {
95-
try {
96-
if (files.memory() != null) {
97-
Files.delete(files.memory());
98-
}
99-
if (files.cpu() != null) {
100-
Files.delete(files.cpu());
101-
}
102-
if (files.sliceDotDDir() != null) {
103-
FileUtils.deleteFileTreeUnchecked(files.sliceDotDDir());
104-
}
105-
} catch (NoSuchFileException e) {
106-
// ignore
96+
cleanupFiles(files);
97+
}
98+
}
99+
100+
private static void cleanupFiles(ResultFiles files) throws IOException {
101+
try {
102+
if (files.memory() != null) {
103+
Files.delete(files.memory());
107104
}
105+
if (files.cpu() != null) {
106+
Files.delete(files.cpu());
107+
}
108+
if (files.sliceDotDDir() != null) {
109+
FileUtils.deleteFileTreeUnchecked(files.sliceDotDDir());
110+
}
111+
} catch (NoSuchFileException e) {
112+
// ignore
108113
}
109114
}
110115

@@ -135,15 +140,23 @@ private static ResultFiles buildSystemdSlices(SystemdRunOptions runOpts) throws
135140
if (runOpts.hasSliceDLimit()) {
136141
String dirName = String.format("%s.slice.d", SLICE_NAMESPACE_PREFIX);
137142
sliceDotDDir = SYSTEMD_CONFIG_HOME.resolve(Path.of(dirName));
138-
Files.createDirectory(sliceDotDDir);
143+
// Using createDirectories since we only need to ensure the directory
144+
// exists. Ignore it if already existent.
145+
Files.createDirectories(sliceDotDDir);
139146

140147
if (runOpts.sliceDMemoryLimit != null) {
141148
Path memoryConfig = sliceDotDDir.resolve(Path.of(SLICE_D_MEM_CONFIG_FILE));
142-
Files.writeString(memoryConfig, getMemoryDSliceContent(runOpts));
149+
Files.writeString(memoryConfig,
150+
getMemoryDSliceContent(runOpts),
151+
StandardOpenOption.TRUNCATE_EXISTING,
152+
StandardOpenOption.CREATE);
143153
}
144154
if (runOpts.sliceDCpuLimit != null) {
145155
Path cpuConfig = sliceDotDDir.resolve(Path.of(SLICE_D_CPU_CONFIG_FILE));
146-
Files.writeString(cpuConfig, getCPUDSliceContent(runOpts));
156+
Files.writeString(cpuConfig,
157+
getCPUDSliceContent(runOpts),
158+
StandardOpenOption.TRUNCATE_EXISTING,
159+
StandardOpenOption.CREATE);
147160
}
148161
}
149162

@@ -159,7 +172,7 @@ private static ResultFiles buildSystemdSlices(SystemdRunOptions runOpts) throws
159172
throw new AssertionError("Failed to write systemd slice files");
160173
}
161174

162-
systemdDaemonReload(cpu);
175+
systemdDaemonReload(cpu, memory, sliceDotDDir);
163176

164177
return new ResultFiles(memory, cpu, sliceDotDDir);
165178
}
@@ -175,12 +188,25 @@ private static String sliceNameCpu(SystemdRunOptions runOpts) {
175188
return String.format("%s-cpu", slice);
176189
}
177190

178-
private static void systemdDaemonReload(Path cpu) throws Exception {
191+
private static void systemdDaemonReload(Path cpu, Path memory, Path sliceDdir) throws Exception {
179192
List<String> daemonReload = systemCtl();
180193
daemonReload.add("daemon-reload");
181194

182195
if (execute(daemonReload).getExitValue() != 0) {
183-
throw new AssertionError("Failed to reload systemd daemon");
196+
if (RUN_AS_USER) {
197+
cleanupFiles(new ResultFiles(cpu, memory, sliceDdir));
198+
// When run as user the systemd user manager needs to be
199+
// accessible and working. This is usually the case when
200+
// connected via SSH or user login, but may not work for
201+
// sessions set up via 'su <user>' or similar.
202+
// In that case, 'systemctl --user status' usually doesn't
203+
// work. There is no other option than skip the test.
204+
String msg = "Service user@.service not properly configured. " +
205+
"Skipping the test!";
206+
throw new SkippedException(msg);
207+
} else {
208+
throw new AssertionError("Failed to reload systemd daemon");
209+
}
184210
}
185211
}
186212

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Sep 20, 2024

@openjdk-notifier[bot]
Please sign in to comment.