1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-18 13:59:17 +00:00
trezor-firmware/storage/tests
2023-08-16 13:29:51 +02:00
..
c refactor(core): add abstraction over flash memory layout 2023-07-25 10:25:20 +02:00
c0 test(storage): workaround clang error 2023-05-16 19:23:33 +02:00
python style(all): use f-strings for formatting 2021-10-13 11:53:17 +02:00
tests style(storage): apply isort 5 2023-08-16 13:29:51 +02:00
Makefile ci: Use address sanitizer in CI. 2022-01-19 15:22:03 +01:00
README.md
test.py style(storage): apply isort 5 2023-08-16 13:29:51 +02:00

Trezor Storage tests

This repository contains all the necessary files to properly test Trezor's internal storage.

This repository consists of:

  • c: The actual C version is implemented in the main storage folder, however we need some other accompanying files to build it on computer.
  • c0: This is the older version of Trezor storage. It is used to test upgrades from the older format to the newer one.
  • python: Python version. Serves as a reference implementation and is implemented purely for the goal of properly testing the C version.
  • tests: Most of the tests run the two implementations against each other. Uses Pytest and hypothesis for random tests.