Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions src/tests/ftest/nvme/enospace.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
'''
(C) Copyright 2020-2024 Intel Corporation.
(C) Copyright 2025 Hewlett Packard Enterprise Development LP
(C) Copyright 2025-2026 Hewlett Packard Enterprise Development LP

SPDX-License-Identifier: BSD-2-Clause-Patent
'''
import os
import threading
import time

from apricot import skipForTicket
from avocado.core.exceptions import TestFail
from daos_utils import DaosCommand
from exception_utils import CommandFailure
Expand Down Expand Up @@ -667,7 +666,6 @@ def test_enospace_time_with_fg(self):
self.log_step("Run one more sanity IOR to fill 1%")
self.start_ior_load(storage='SCM', operation="Auto_Write", percent=1)

@skipForTicket("DAOS-8896")
def test_performance_storage_full(self):
"""Jira ID: DAOS-4756.

Expand Down Expand Up @@ -697,7 +695,8 @@ def test_performance_storage_full(self):
self.run_enospace_with_bg_job(self.client_log)

# Read the same container which was written at the beginning.
self.container.uuid = baseline_cont_uuid
# self.nvme_local_cont.uuid = baseline_cont_uuid
self.ior_cmd.dfs_cont.update(baseline_cont_uuid)
self.start_ior_load(storage='SCM', operation='Auto_Read', percent=1)
max_mib_latest = float(self.ior_matrix[0][int(IorMetrics.MAX_MIB)])
self.log.info("IOR Latest Read MiB %s", max_mib_latest)
Expand Down
Loading