opencas-test-framework/connection/dummy_executor.py
Robert Baldyga 40f08a369a Move test-framework to its own repository
Signed-off-by: Robert Baldyga <baldyga.r@gmail.com>
2023-05-01 18:55:34 +02:00

16 lines
410 B
Python

#
# Copyright(c) 2019-2021 Intel Corporation
# SPDX-License-Identifier: BSD-3-Clause
#
from connection.base_executor import BaseExecutor
class DummyExecutor(BaseExecutor):
def _execute(self, command, timeout=None):
print(command)
def _rsync(self, src, dst, delete, symlinks, checksum, exclude_list, timeout,
dut_to_controller):
print(f'COPY FROM "{src}" TO "{dst}"')