1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-12 10:58:59 +00:00
trezor-firmware/storage/tests
2019-05-13 18:00:43 +02:00
..
c style: improve makefile output, format test files 2019-05-13 18:00:43 +02:00
c0 style: improve makefile output, format test files 2019-05-13 18:00:43 +02:00
python storage: allright isort, you win 2019-05-04 22:47:05 +02:00
tests storage: add tests 2019-04-25 16:50:56 +02:00
Makefile storage: add tests 2019-04-25 16:50:56 +02:00
README.md storage: alter README to reflect monorepo 2019-04-25 16:50:56 +02:00
test.py storage: style 2019-04-25 16:50:56 +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.