mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +00:00
nftables: change ptest output format
This change adds a simple format for the skip results. The format selected is the automake "simple test" format: "result: testname" Signed-off-by: Jiaying Song <jiaying.song.cn@windriver.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
committed by
Armin Kuster
parent
3ce9678aa5
commit
80e01188fa
@@ -5,14 +5,18 @@ cd ${NFTABLESLIB}/ptest || exit 1
|
|||||||
|
|
||||||
LOG="${NFTABLESLIB}/ptest/nftables_ptest_$(date +%Y%m%d-%H%M%S).log"
|
LOG="${NFTABLESLIB}/ptest/nftables_ptest_$(date +%Y%m%d-%H%M%S).log"
|
||||||
NFT=nft
|
NFT=nft
|
||||||
tests/shell/run-tests.sh -v | sed -E '/I: \[OK\]/ s/^/PASS: / ; /W: \[(CHK DUMP|VALGRIND|TAINTED|DUMP FAIL|FAILED)\]/ s/^/FAIL: /' | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" | tee -a "${LOG}"
|
tests/shell/run-tests.sh -v | sed -E '/I: \[OK\]/ s/^/PASS: / ; /W: \[(CHK DUMP|VALGRIND|TAINTED|DUMP FAIL|FAILED)\]/ s/^/FAIL: / ; /I: \[SKIPPED\]/ s/^/SKIP: /' | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" | tee -a "${LOG}"
|
||||||
|
|
||||||
passed=$(grep -c PASS: "${LOG}")
|
passed=$(grep -c PASS: "${LOG}")
|
||||||
failed=$(grep -c FAIL: "${LOG}")
|
failed=$(grep -c FAIL: "${LOG}")
|
||||||
all=$((passed + failed))
|
skiped=$(grep -c SKIP: "${LOG}")
|
||||||
|
|
||||||
|
all=$((passed + failed + skiped))
|
||||||
|
|
||||||
( echo "=== Test Summary ==="
|
( echo "=== Test Summary ==="
|
||||||
echo "TOTAL: ${all}"
|
echo "TOTAL: ${all}"
|
||||||
echo "PASSED: ${passed}"
|
echo "PASSED: ${passed}"
|
||||||
echo "FAILED: ${failed}"
|
echo "FAILED: ${failed}"
|
||||||
|
echo "SKIPED: ${skiped}"
|
||||||
|
echo "===================="
|
||||||
) | tee -a "${LOG}"
|
) | tee -a "${LOG}"
|
||||||
|
|||||||
Reference in New Issue
Block a user