blob: 07de6f29e5a97754704d788acb60208bb43fc0b6 [file] [log] [blame]
# Copyright (c) 2017 Linaro Limited.
#
# SPDX-License-Identifier: Apache-2.0
'''Runner stub for QEMU.'''
from .core import ZephyrBinaryRunner
class QemuBinaryRunner(ZephyrBinaryRunner):
'''Place-holder for QEMU runner customizations.'''
def __init__(self, debug=False):
super(QemuBinaryRunner, self).__init__(debug=debug)
def replaces_shell_script(shell_script, command):
return shell_script == 'qemu.sh'
def create_from_env(command, debug):
'''Create runner. No environment dependencies.'''
return QemuBinaryRunner()
def run(self, command, **kwargs):
if command == 'debugserver':
print('Detached GDB server')