Skip to content

Commit

Permalink
DAOS-6004 test: Re-enabled skipped tests (#9237)
Browse files Browse the repository at this point in the history
Removing skipForTicket decorators and CANCEL_FOR_TICKET entries for
tests whose tickets have been resolved.

Signed-off-by: Phillip Henderson <[email protected]>
  • Loading branch information
phender authored Jun 3, 2022
1 parent de4f791 commit f1bf448
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 12 deletions.
4 changes: 1 addition & 3 deletions src/tests/ftest/control/dmg_system_reformat.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
#!/usr/bin/python
"""
(C) Copyright 2020-2021 Intel Corporation.
(C) Copyright 2020-2022 Intel Corporation.
SPDX-License-Identifier: BSD-2-Clause-Patent
"""
from apricot import skipForTicket
from avocado.core.exceptions import TestFail
from pool_test_base import PoolTestBase

Expand All @@ -19,7 +18,6 @@ class DmgSystemReformatTest(PoolTestBase):
:avocado: recursive
"""

@skipForTicket("DAOS-6004")
def test_dmg_system_reformat(self):
"""
JIRA ID: DAOS-5415
Expand Down
2 changes: 0 additions & 2 deletions src/tests/ftest/control/dmg_telemetry_io_latency.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
from telemetry_test_base import TestWithTelemetry
from telemetry_utils import TelemetryUtils
from test_utils_container import TestContainer
from apricot import skipForTicket


def get_rf(oclass):
Expand Down Expand Up @@ -514,7 +513,6 @@ def test_ior_dtx_telemetry_metrics(self):
if errors:
self.fail("Test FAILED")

@skipForTicket("DAOS-9031")
def test_ior_latency_telmetry_metrics(self):
"""JIRA ID: DAOS-8624.
Expand Down
6 changes: 2 additions & 4 deletions src/tests/ftest/erasurecode/offline_rebuild_aggregation.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#!/usr/bin/python
'''
(C) Copyright 2020-2021 Intel Corporation.
(C) Copyright 2020-2022 Intel Corporation.
SPDX-License-Identifier: BSD-2-Clause-Patent
'''
import time
from ec_utils import ErasureCodeIor, check_aggregation_status
from apricot import skipForTicket


class EcodAggregationOffRebuild(ErasureCodeIor):
# pylint: disable=too-many-ancestors
Expand Down Expand Up @@ -90,7 +90,6 @@ def test_ec_offline_rebuild_agg_disabled(self):
self.pool.set_property("reclaim", "disabled")
self.execution()

@skipForTicket("DAOS-8542")
def test_ec_offline_rebuild_agg_default(self):
"""Jira ID: DAOS-7313.
Expand All @@ -113,7 +112,6 @@ def test_ec_offline_rebuild_agg_default(self):
"""
self.execution(agg_trigger=True)

@skipForTicket("DAOS-8542")
def test_ec_offline_agg_during_rebuild(self):
"""Jira ID: DAOS-7313.
Expand Down
6 changes: 3 additions & 3 deletions src/tests/ftest/erasurecode/rebuild_fio.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/python3
'''
(C) Copyright 2019-2021 Intel Corporation.
(C) Copyright 2019-2022 Intel Corporation.
SPDX-License-Identifier: BSD-2-Clause-Patent
'''
Expand Down Expand Up @@ -65,7 +65,7 @@ def execution(self, rebuild_mode):
# Read and verify the original data.
self.fio_cmd.run()

@skipForTicket("DAOS-9783,DAOS-9785")
@skipForTicket("DAOS-9785")
def test_ec_online_rebuild_fio(self):
"""Jira ID: DAOS-7320.
Expand All @@ -88,7 +88,7 @@ def test_ec_online_rebuild_fio(self):
"""
self.execution('on-line')

@skipForTicket("DAOS-9783,DAOS-9785")
@skipForTicket("DAOS-9785")
def test_ec_offline_rebuild_fio(self):
"""Jira ID: DAOS-7320.
Expand Down

0 comments on commit f1bf448

Please sign in to comment.