diff options
author | Zang Ruochen <zangrc.fnst@cn.fujitsu.com> | 2020-06-30 09:17:30 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-07-03 18:07:05 -0700 |
commit | c1f2064610a467e1495977b150b0db8fdfe33898 (patch) | |
tree | fa0e7a6fb8480d1bed4f8e47e342326525e53288 /meta-python/recipes-devtools/python/python3-cbor2 | |
parent | 81754bc54fa69265cda2f79ced1a5de616425f16 (diff) | |
download | meta-openembedded-c1f2064610a467e1495977b150b0db8fdfe33898.tar.gz |
python3-cbor2: Enable ptest
Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-cbor2')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-cbor2/run-ptest | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-cbor2/run-ptest b/meta-python/recipes-devtools/python/python3-cbor2/run-ptest new file mode 100644 index 000000000..b63c4de0d --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-cbor2/run-ptest | |||
@@ -0,0 +1,3 @@ | |||
1 | #!/bin/sh | ||
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/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}}' | ||