2022-10-28 22:17:22 +02:00
|
|
|
# Notes on run_tests.sh script
|
2026-02-27 16:59:43 +01:00
|
|
|
This script setups the mirrors and then runs a bunch of different builds with make
|
|
|
|
|
and cmake together with the different combos of RDV4, GENERIC, BTADDON
|
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
|
|
|
|
|
```
|