diff options
author | Gyorgy Sarvari <skandigraun@gmail.com> | 2025-03-13 20:47:21 +0100 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-03-13 22:09:36 -0700 |
commit | 3457231e706ffc86b6f6ef99abe09cb9626552c7 (patch) | |
tree | 136b31bea4a271c4654ec66309c2023e97f431d2 /meta-python/recipes-extended | |
parent | 9fb66a8609afc7396f751dbdf32a862c921ba599 (diff) | |
download | meta-openembedded-3457231e706ffc86b6f6ef99abe09cb9626552c7.tar.gz |
python3-gpt-image: fix typo in run-ptest script
typo: SKIPED vs SKIPPED
Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-extended')
-rwxr-xr-x | meta-python/recipes-extended/python3-gpt-image/python3-gpt-image/run-ptest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-python/recipes-extended/python3-gpt-image/python3-gpt-image/run-ptest b/meta-python/recipes-extended/python3-gpt-image/python3-gpt-image/run-ptest index 3385d68939..b63c4de0d9 100755 --- a/meta-python/recipes-extended/python3-gpt-image/python3-gpt-image/run-ptest +++ b/meta-python/recipes-extended/python3-gpt-image/python3-gpt-image/run-ptest | |||
@@ -1,3 +1,3 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | pytest -o log_cli=true -o log_cli_level=INFO | sed -e 's/\[...%\]//g'| sed -e 's/PASSED/PASS/g'| sed -e 's/FAILED/FAIL/g'|sed -e 's/SKIPED/SKIP/g'| awk '{if ($NF=="PASS" || $NF=="FAIL" || $NF=="SKIP" || $NF=="XFAIL" || $NF=="XPASS"){printf "%s: %s\n", $NF, $0}else{print}}'| awk '{if ($NF=="PASS" || $NF=="FAIL" || $NF=="SKIP" || $NF=="XFAIL" || $NF=="XPASS") {$NF="";print $0}else{print}}' | 3 | pytest -o log_cli=true -o log_cli_level=INFO | sed -e 's/\[...%\]//g'| sed -e 's/PASSED/PASS/g'| sed -e 's/FAILED/FAIL/g'|sed -e 's/SKIPPED/SKIP/g'| awk '{if ($NF=="PASS" || $NF=="FAIL" || $NF=="SKIP" || $NF=="XFAIL" || $NF=="XPASS"){printf "%s: %s\n", $NF, $0}else{print}}'| awk '{if ($NF=="PASS" || $NF=="FAIL" || $NF=="SKIP" || $NF=="XFAIL" || $NF=="XPASS") {$NF="";print $0}else{print}}' |