Files

21 lines
476 B
Markdown
Raw Permalink Normal View History

# Notes on run_tests.sh script
2023-01-15 18:46:14 +01:00
This script runs a bunch of different builds with make and cmake together
with the different combos of RDV4, GENERIC, BTADDON combos.
2023-01-15 18:46:14 +01:00
If all tests OK, the script will finish with PASS.
2021-12-15 01:42:01 +01:00
# Notes to run tests
The script is to be run in proxmark root folder inside the docker env.
2021-12-15 01:42:01 +01:00
```
docker/kali/run_tests.sh;
2023-01-15 18:46:14 +01:00
```
2023-01-15 18:46:14 +01:00
Or if you want to run single test,
2021-12-15 01:42:01 +01:00
```
2026-02-21 15:16:15 +01:00
sudo apt update && sudo apt upgrade -y
make clean; make -j
2021-12-15 01:42:01 +01:00
tools/pm3_tests.sh --long
```