| # Copyright lowRISC contributors. |
| # Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| # SPDX-License-Identifier: Apache-2.0 |
| |
| '''Run tests to make sure the simulator works as expected |
| |
| We expect tests below ./simple. Each test is defined by two files (in the same |
| directory as each other). The code for the test is in a single assembly file, |
| called <name>.s, and the expected results are in a file called <name>.exp. |
| |
| ''' |
| |
| import os |
| import py |
| import subprocess |
| from typing import Any, List, Tuple |
| |
| from testutil import asm_and_link_one_file, SIM_DIR |
| from shared.reg_dump import parse_reg_dump |
| |
| |
| def find_simple_tests() -> List[Tuple[str, str]]: |
| '''Find all tests below ./simple (relative to this file) |
| |
| Returns (asm, expected) pairs, with the paths to the assembly file and |
| expected values. |
| |
| ''' |
| root = os.path.join(os.path.dirname(__file__), 'simple') |
| ret = [] |
| for subdir, _, files in os.walk(root): |
| # We're interested in pairs foo.s / foo.exp, which contain the assembly |
| # and expected values, respectively. |
| asm_files = {} |
| exp_files = {} |
| |
| for filename in files: |
| basename, ext = os.path.splitext(filename) |
| if ext == '.s': |
| assert basename not in asm_files |
| asm_files[basename] = filename |
| elif ext == '.exp': |
| assert basename not in exp_files |
| exp_files[basename] = filename |
| else: |
| # Ignore any files that aren't called .s or .exp (which allows |
| # things like adding READMEs to the tree) |
| pass |
| |
| dirname = os.path.join(root, subdir) |
| |
| # Pair up the files we found |
| for basename, asm_file in asm_files.items(): |
| exp_file = exp_files.get(basename) |
| if exp_file is None: |
| raise RuntimeError('In the directory {!r}, there is {}, but ' |
| 'no {}.exp, which should contain expected ' |
| 'values.' |
| .format(dirname, asm_file, basename)) |
| |
| ret.append((os.path.join(dirname, asm_file), |
| os.path.join(dirname, exp_file))) |
| |
| # We've checked that every .s file has a matching .exp. Check the other |
| # way around too. |
| for basename, exp_file in exp_files.items(): |
| if basename not in asm_files: |
| raise RuntimeError('In the directory {!r}, there is {}, but ' |
| 'no {}.s, which should contain the program ' |
| 'that generates the expected values.' |
| .format(dirname, exp_file, basename)) |
| |
| assert len(exp_files) == len(asm_files) |
| |
| return ret |
| |
| |
| def test_count(tmpdir: py.path.local, |
| asm_file: str, |
| expected_file: str) -> None: |
| # Start by assembling and linking the input file |
| elf_file = asm_and_link_one_file(asm_file, tmpdir) |
| |
| # Run the simulation. We can just pass a list of commands to stdin, and |
| # don't need to do anything clever to track what's going on. |
| cmd = [os.path.join(SIM_DIR, 'standalone.py'), |
| '--dump-regs', '-', elf_file] |
| sim_proc = subprocess.run(cmd, check=True, |
| stdout=subprocess.PIPE, universal_newlines=True) |
| |
| regs_seen = parse_reg_dump(sim_proc.stdout) |
| with open(expected_file) as exp_file: |
| regs_expected = parse_reg_dump(exp_file.read()) |
| |
| # If a register does not appear in the expected registers, then its value |
| # is not constrained; set the expected value to match the actual value. |
| for reg in regs_seen: |
| if reg not in regs_expected: |
| regs_expected[reg] = regs_seen[reg] |
| |
| assert regs_expected == regs_seen |
| |
| |
| def pytest_generate_tests(metafunc: Any) -> None: |
| if metafunc.function is test_count: |
| tests = find_simple_tests() |
| test_ids = [os.path.basename(e[0]) for e in tests] |
| metafunc.parametrize("asm_file,expected_file", tests, ids=test_ids) |