Skip to content

Commit

Permalink
DAOS-13380 engine: some fixes
Browse files Browse the repository at this point in the history
Test-tag: daily_regression full_regression

Required-githooks: true

Signed-off-by: Xuezhao Liu <xuezhao.liu@intel.com>
  • Loading branch information
liuxuezhao committed Jul 3, 2023
1 parent e57cbb7 commit d4935b2
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 7 deletions.
3 changes: 2 additions & 1 deletion src/tests/ftest/control/daos_agent_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
SPDX-License-Identifier: BSD-2-Clause-Patent
"""
from apricot import TestWithServers
from apricot import TestWithServers, skipForTicket
from agent_utils import include_local_host
from exception_utils import CommandFailure

Expand All @@ -23,6 +23,7 @@ def __init__(self, *args, **kwargs):
self.setup_start_agents = False
self.setup_start_servers = False

@skipForTicket("DAOS-13380")
def test_daos_agent_config_basic(self):
"""
JIRA ID: DAOS-1508
Expand Down
3 changes: 2 additions & 1 deletion src/tests/ftest/control/daos_control_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""


from apricot import TestWithServers
from apricot import TestWithServers, skipForTicket
from exception_utils import CommandFailure


Expand All @@ -16,6 +16,7 @@ class DaosControlConfigTest(TestWithServers):
:avocado: recursive
"""

@skipForTicket("DAOS-13380")
def test_daos_control_config_basic(self):
"""
JIRA ID: DAOS-1508
Expand Down
1 change: 1 addition & 0 deletions src/tests/ftest/control/daos_system_query.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ server_config:
engines:
0:
pinned_numa_node: 0
targets: 4
nr_xs_helpers: 1
fabric_iface_port: 31416
log_file: daos_server0.log
Expand Down
2 changes: 1 addition & 1 deletion src/tests/ftest/control/dmg_pool_query_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ server_config:
engines_per_host: 1
engines:
0:
targets: 8
targets: 4
storage: auto
system_ram_reserved: 64
pool:
Expand Down
4 changes: 3 additions & 1 deletion src/tests/ftest/control/ms_resilience.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from ClusterShell.NodeSet import NodeSet

from apricot import TestWithServers
from apricot import TestWithServers, skipForTicket
from run_utils import stop_processes


Expand Down Expand Up @@ -323,6 +323,7 @@ def test_ms_resilience_2(self):
# Run test cases
self.verify_retained_quorum(2)

@skipForTicket("DAOS-13380")
def test_ms_resilience_3(self):
"""
JIRA ID: DAOS-3798
Expand All @@ -340,6 +341,7 @@ def test_ms_resilience_3(self):
# Run test case
self.verify_regained_quorum(1)

@skipForTicket("DAOS-13380")
def test_ms_resilience_4(self):
"""
JIRA ID: DAOS-3798
Expand Down
3 changes: 2 additions & 1 deletion src/tests/ftest/control/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
'''
import re

from apricot import TestWithServers
from apricot import TestWithServers, skipForTicket
from general_utils import run_pcmd, report_errors
from server_utils_base import DaosServerCommandRunner

Expand All @@ -17,6 +17,7 @@ class DAOSVersion(TestWithServers):
:avocado: recursive
"""
@skipForTicket("DAOS-13380")
def test_version(self):
"""Verify version number for dmg, daos, daos_server, and daos_agent against RPM.
Expand Down
2 changes: 2 additions & 0 deletions src/tests/ftest/dfuse/daos_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

from dfuse_test_base import DfuseTestBase
from run_utils import run_remote
from apricot import skipForTicket


class DaosBuild(DfuseTestBase):
Expand Down Expand Up @@ -49,6 +50,7 @@ def test_dfuse_daos_build_wt(self):
"""
self.run_build_test("writethrough")

@skipForTicket("DAOS-13380")
def test_dfuse_daos_build_wt_il(self):
"""This test builds DAOS on a dfuse filesystem.
Expand Down
2 changes: 1 addition & 1 deletion src/tests/ftest/pool/query_attribute.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ server_config:
engines_per_host: 1
engines:
0:
targets: 8
targets: 4
nr_xs_helpers: 0
storage:
0:
Expand Down
2 changes: 1 addition & 1 deletion src/tests/ftest/telemetry/dkey_akey_enum_punch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ server_config:
engines_per_host: 1
engines:
0:
targets: 8
targets: 4
nr_xs_helpers: 0
storage:
0:
Expand Down

0 comments on commit d4935b2

Please sign in to comment.