test-framework: fix blktrace,file copy,trim support detection

Signed-off-by: Kamil Gierszewski <kamil.gierszewski@huawei.com>
This commit is contained in:
Kamil Gierszewski 2024-04-11 03:38:43 +02:00
parent db06ac9d3c
commit 0cd936ee72
No known key found for this signature in database
4 changed files with 17 additions and 5 deletions

View File

@ -1,5 +1,6 @@
#
# Copyright(c) 2019-2022 Intel Corporation
# Copyright(c) 2023-2024 Huawei Technologies Co., Ltd.
# SPDX-License-Identifier: BSD-3-Clause
#
import posixpath

View File

@ -1,8 +1,11 @@
#
# Copyright(c) 2019-2022 Intel Corporation
# Copyright(c) 2023-2024 Huawei Technologies Co., Ltd.
# SPDX-License-Identifier: BSD-3-Clause
#
import math
import time
from aenum import IntFlag, Enum
@ -133,6 +136,10 @@ class BlkTrace:
drop_caches(DropCachesMode.ALL)
TestRun.executor.run_expect_success(f"kill -s SIGINT {self.blktrace_pid}")
time.sleep(3)
if TestRun.executor.check_if_process_exists(self.blktrace_pid):
TestRun.fail("blktrace monitoring for device is still active")
self.blktrace_pid = -1
# dummy command for swallowing output of killed command

View File

@ -1,6 +1,6 @@
#
# Copyright(c) 2019-2022 Intel Corporation
# Copyright(c) 2023 Huawei Technologies Co., Ltd.
# Copyright(c) 2023-2024 Huawei Technologies Co., Ltd.
# SPDX-License-Identifier: BSD-3-Clause
#
@ -341,9 +341,13 @@ def wipe_filesystem(device, force=True):
def check_if_device_supports_trim(device):
if device.get_device_id().startswith("nvme"):
return True
command_output = TestRun.executor.run(f'hdparm -I {device.path} | grep "TRIM supported"')
if command_output.exit_code == 0:
return True
command_output = TestRun.executor.run(
f'hdparm -I {device.path} | grep "TRIM supported"')
return command_output.exit_code == 0
f"lsblk -dn {device.path} -o DISC-MAX | grep -o \'[0-9]\\+\'"
)
return int(command_output.stdout) > 0
def get_device_filesystem_type(device_id):

View File

@ -1,6 +1,6 @@
#
# Copyright(c) 2019-2022 Intel Corporation
# Copyright(c) 2023 Huawei Technologies Co., Ltd.
# Copyright(c) 2023-2024 Huawei Technologies Co., Ltd.
# SPDX-License-Identifier: BSD-3-Clause
#
@ -116,7 +116,7 @@ def copy(source: str,
cmd = f"cp{' --force' if force else ''}" \
f"{' --recursive' if recursive else ''}" \
f"{' --dereference' if dereference else ''} " \
f"\"{source}\" \"{destination}\""
f"{source} {destination}"
return TestRun.executor.run_expect_success(cmd)