mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-02 21:54:10 +08:00
ignore test if fail
This commit is contained in:
parent
5be53281da
commit
da279dec3b
1 changed files with 9 additions and 2 deletions
11
pm3test.sh
11
pm3test.sh
|
@ -5,6 +5,7 @@ cd "$PM3PATH" || exit 1
|
|||
|
||||
C_RED='\033[0;31m'
|
||||
C_GREEN='\033[0;32m'
|
||||
C_YELLOW='\033[0;33m'
|
||||
C_BLUE='\033[0;34m'
|
||||
C_NC='\033[0m' # No Color
|
||||
|
||||
|
@ -25,7 +26,7 @@ function CheckFileExist() {
|
|||
return 1
|
||||
}
|
||||
|
||||
# title, command line, check result, repeat several times if failed
|
||||
# title, command line, check result, repeat several times if failed, ignore if fail
|
||||
function CheckExecute() {
|
||||
|
||||
if [ $4 ]; then
|
||||
|
@ -43,6 +44,12 @@ function CheckExecute() {
|
|||
if [ ! $I == "e" ]; then echo "retry $I"; fi
|
||||
done
|
||||
|
||||
|
||||
if [ $5 ]; then
|
||||
echo -e "$1 ${C_YELLOW}[Ignored]${C_NC}"
|
||||
return 0
|
||||
fi
|
||||
|
||||
echo -e "$1 ${C_RED}[Fail]${C_NC}"
|
||||
return 1
|
||||
}
|
||||
|
@ -78,7 +85,7 @@ while true; do
|
|||
|
||||
if ! CheckExecute "hf mf offline text" "./client/proxmark3 -c 'hf mf'" "at_enc"; then break; fi
|
||||
|
||||
if ! CheckExecute "hf mf hardnested test" "./client/proxmark3 -c 'hf mf hardnested t 1 000000000000'" "found:" "repeat"; then break; fi
|
||||
if ! CheckExecute "hf mf hardnested test" "./client/proxmark3 -c 'hf mf hardnested t 1 000000000000'" "found:" "repeat" "ignore"; then break; fi
|
||||
if ! CheckExecute "emv test" "./client/proxmark3 -c 'emv test'" "Test(s) \[ OK"; then break; fi
|
||||
|
||||
printf "\n${C_GREEN}Tests [OK]${C_NC}\n\n"
|
||||
|
|
Loading…
Reference in a new issue