2019-04-25 14:38:56 +00:00
|
|
|
.PHONY: tests
|
|
|
|
|
2022-01-05 16:11:19 +00:00
|
|
|
export ASAN_OPTIONS=verify_asan_link_order=0
|
|
|
|
|
2019-04-25 14:38:56 +00:00
|
|
|
build:
|
|
|
|
$(MAKE) -C c
|
2023-08-21 08:56:18 +00:00
|
|
|
$(MAKE) -C c libtrezor-storage-qw.so
|
2019-04-25 14:38:56 +00:00
|
|
|
$(MAKE) -C c0
|
2024-02-12 11:25:02 +00:00
|
|
|
$(MAKE) -C c3
|
2019-04-25 14:38:56 +00:00
|
|
|
|
2022-01-05 16:11:19 +00:00
|
|
|
clean:
|
|
|
|
$(MAKE) -C c clean
|
|
|
|
$(MAKE) -C c0 clean
|
2024-02-12 11:25:02 +00:00
|
|
|
$(MAKE) -C c3 clean
|
2022-01-05 16:11:19 +00:00
|
|
|
|
2019-04-25 14:38:56 +00:00
|
|
|
## tests commands:
|
|
|
|
tests:
|
2020-01-02 17:55:37 +00:00
|
|
|
pytest --junitxml=../../tests/junit.xml -k "not hypothesis"
|
2019-04-25 14:38:56 +00:00
|
|
|
|
|
|
|
tests_all:
|
2020-01-02 17:55:37 +00:00
|
|
|
pytest --junitxml=../../tests/junit.xml
|