-
Notifications
You must be signed in to change notification settings - Fork 485
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #971 from flit/bugfix/commander_elf
Commander fix for passed in elves
- Loading branch information
Showing
5 changed files
with
165 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
# pyOCD debugger | ||
# Copyright (c) 2020 Arm Limited | ||
# SPDX-License-Identifier: Apache-2.0 | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
from __future__ import print_function | ||
|
||
import argparse | ||
import sys | ||
import traceback | ||
import logging | ||
import six | ||
import os | ||
|
||
from pyocd.core.helpers import ConnectHelper | ||
from pyocd.probe.pydapaccess import DAPAccess | ||
from pyocd.utility.mask import round_up_div | ||
from pyocd.utility import conversion | ||
from pyocd.core.memory_map import MemoryType | ||
from pyocd.commands.commander import PyOCDCommander | ||
from pyocd.commands import commands | ||
from test_util import ( | ||
Test, | ||
TestResult, | ||
get_session_options, | ||
get_target_test_params, | ||
binary_to_elf_file, | ||
get_test_binary_path, | ||
PYOCD_DIR, | ||
) | ||
|
||
GDB_TEST_ELF = os.path.join(PYOCD_DIR, "src/gdb_test_program/gdb_test.elf") | ||
|
||
class CommanderTestResult(TestResult): | ||
def __init__(self): | ||
super(CommanderTestResult, self).__init__(None, None, None) | ||
self.name = "commander" | ||
|
||
class CommanderTest(Test): | ||
def __init__(self): | ||
super(CommanderTest, self).__init__("Commander Test", commander_test) | ||
|
||
def run(self, board): | ||
try: | ||
result = self.test_function(board.unique_id) | ||
except Exception as e: | ||
result = CommanderTestResult() | ||
result.passed = False | ||
print("Exception %s when testing board %s" % (e, board.unique_id)) | ||
traceback.print_exc(file=sys.stdout) | ||
result.board = board | ||
result.test = self | ||
return result | ||
|
||
def commander_test(board_id): | ||
test_pass_count = 0 | ||
test_count = 0 | ||
failed_commands = [] | ||
result = CommanderTestResult() | ||
|
||
COMMANDS_TO_TEST = [ | ||
# general commands | ||
["continue"], | ||
["status"], | ||
["halt"], | ||
["status"], | ||
|
||
# commander command group - these are not tested by commands_test.py. | ||
["list"], | ||
["exit"], # Must be last command! | ||
] | ||
|
||
print("\n------ Testing commander ------\n") | ||
|
||
# Set up commander args. | ||
args = six.moves.UserDict() | ||
args.no_init = False | ||
args.frequency = 1000000 | ||
args.options = {} #get_session_options() | ||
args.halt = True | ||
args.no_wait = True | ||
args.project_dir = None | ||
args.config = None | ||
args.script = None | ||
args.no_config = False | ||
args.pack = None | ||
args.unique_id = board_id | ||
args.target_override = None | ||
args.elf = GDB_TEST_ELF | ||
|
||
test_count += 1 | ||
try: | ||
cmdr = PyOCDCommander(args, COMMANDS_TO_TEST) | ||
cmdr.run() | ||
test_pass_count += 1 | ||
print("TEST PASSED") | ||
except Exception: | ||
print("TEST FAILED") | ||
traceback.print_exc() | ||
|
||
test_count += 1 | ||
print("Testing exit code") | ||
print("Exit code:", cmdr.exit_code) | ||
if cmdr.exit_code == 0: | ||
test_pass_count += 1 | ||
print("TEST PASSED") | ||
else: | ||
print("TEST FAILED") | ||
|
||
print("\n\nTest Summary:") | ||
print("Pass count %i of %i tests" % (test_pass_count, test_count)) | ||
if failed_commands: | ||
for c in failed_commands: | ||
print(" - '" + c + "'") | ||
if test_pass_count == test_count: | ||
print("COMMANDER TEST SCRIPT PASSED") | ||
else: | ||
print("COMMANDER TEST SCRIPT FAILED") | ||
|
||
result.passed = test_count == test_pass_count | ||
return result | ||
|
||
if __name__ == "__main__": | ||
parser = argparse.ArgumentParser(description='pyOCD commander test') | ||
parser.add_argument('-d', '--debug', action="store_true", help='Enable debug logging') | ||
parser.add_argument('-u', '--uid', help='Debug probe unique ID') | ||
parser.add_argument("-da", "--daparg", dest="daparg", nargs='+', help="Send setting to DAPAccess layer.") | ||
args = parser.parse_args() | ||
level = logging.DEBUG if args.debug else logging.INFO | ||
logging.basicConfig(level=level) | ||
DAPAccess.set_args(args.daparg) | ||
commander_test(args.uid) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters