From a557b53ae7899d67b8aa24b2af51c96288a85147 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Fri, 28 Oct 2022 22:17:22 +0200 Subject: [PATCH] text --- docker/archlinux/README.md | 35 +++++++++++++++++------------------ 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/docker/archlinux/README.md b/docker/archlinux/README.md index 6e80a4abe..35fdf0c78 100644 --- a/docker/archlinux/README.md +++ b/docker/archlinux/README.md @@ -1,17 +1,3 @@ -# 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. - -If all tests OK, the script will finish. - -The script is to be run in proxmark root folder inside the docker env. - -``` -cd proxmark; -docker/archlinux/run_tests.sh; -``` - # Notes to install latest gcc and arm-none-eabi-gcc ``` @@ -41,12 +27,25 @@ sudo pacman -S testing/gcc sudo pacman -S gcc ``` -# Notes to run tests +# 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. -Add first the mirrors, see above +If all tests OK, the script will finish. + + +# Notes to run tests +Add first the mirrors, see above, if needed. + +The release test build script is to be run in proxmark root folder inside the docker env. +``` +docker/archlinux/run_tests.sh; +``` + +Or if you want to run single test, ``` -sudo pacman -S python-pip -python3 -m pip install ansicolors sslcrypto +make clean; make -j tools/pm3_tests.sh --long ```