Skip to content

Commit 5768b11

Browse files
committed
start_tmux.sh: remove double-checking for existing shm segments
1 parent a628b60 commit 5768b11

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

prodtests/full-system-test/start_tmux.sh

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,7 @@ if [[ "${FST_RUN_WITHOUT_CHECKS:-0}" != "1" ]]; then
1212
exit 1
1313
fi
1414

15-
# 2. Abort if FMQ shared-memory files exist in /dev/shm
16-
if compgen -G "/dev/shm/fmq*" > /dev/null; then
17-
echo "ERROR: Found existing /dev/shm/fmq* files." >&2
18-
echo "Please clean them manually before running the FST." >&2
19-
exit 1
20-
fi
21-
22-
# 3. MI100 check: detect MI100 GPU but EPN_NODE_MI100 not set or set to 0
15+
# 2. MI100 check: detect MI100 GPU but EPN_NODE_MI100 not set or set to 0
2316
if lspci | grep -qi "MI100"; then
2417
if [[ -z "${EPN_NODE_MI100:-}" || "${EPN_NODE_MI100}" == "0" ]]; then
2518
echo "ERROR: MI100 GPU detected on this node, but EPN_NODE_MI100 is not set to 1." >&2

0 commit comments

Comments
 (0)