From fca301268112b1a8cafa3c4735a28ab8570209d8 Mon Sep 17 00:00:00 2001 From: Ernst Hellbar Date: Wed, 25 Mar 2026 14:01:41 +0100 Subject: [PATCH] start_tmux.sh: remove double-checking for existing shm segments --- prodtests/full-system-test/start_tmux.sh | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/prodtests/full-system-test/start_tmux.sh b/prodtests/full-system-test/start_tmux.sh index fb69cc1e6baec..18f019573904f 100755 --- a/prodtests/full-system-test/start_tmux.sh +++ b/prodtests/full-system-test/start_tmux.sh @@ -12,14 +12,7 @@ if [[ "${FST_RUN_WITHOUT_CHECKS:-0}" != "1" ]]; then exit 1 fi - # 2. Abort if FMQ shared-memory files exist in /dev/shm - if compgen -G "/dev/shm/fmq*" > /dev/null; then - echo "ERROR: Found existing /dev/shm/fmq* files." >&2 - echo "Please clean them manually before running the FST." >&2 - exit 1 - fi - - # 3. MI100 check: detect MI100 GPU but EPN_NODE_MI100 not set or set to 0 + # 2. MI100 check: detect MI100 GPU but EPN_NODE_MI100 not set or set to 0 if lspci | grep -qi "MI100"; then if [[ -z "${EPN_NODE_MI100:-}" || "${EPN_NODE_MI100}" == "0" ]]; then echo "ERROR: MI100 GPU detected on this node, but EPN_NODE_MI100 is not set to 1." >&2