Files
proxmark3/docker/archlinux/README.md
T

23 lines
518 B
Markdown
Raw Permalink Normal View History

2022-10-28 22:17:22 +02:00
# Notes on run_tests.sh script
This script does both setup the mirrors and pip install and then run a
bunch of different builds with make and cmake together with the different combos
of RDV4, GENERIC, BTADDON combos.
2021-06-25 22:50:19 +02:00
2023-01-15 18:46:14 +01:00
If all tests OK, the script will finish with PASS.
2022-10-28 22:17:22 +02:00
# Notes to run tests
The release test build script is to be run in proxmark root folder inside the docker env.
```
docker/archlinux/run_tests.sh;
2023-01-15 18:46:14 +01:00
```
2022-10-28 22:17:22 +02:00
2023-01-15 18:46:14 +01:00
Or if you want to run single test,
2021-06-25 22:50:19 +02:00
```
2022-10-28 22:17:22 +02:00
make clean; make -j
2023-07-16 17:25:43 +02:00
2021-06-25 22:50:19 +02:00
tools/pm3_tests.sh --long
```