summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-networking/recipes-filter/nftables/nftables/run-ptest10
1 files changed, 5 insertions, 5 deletions
diff --git a/meta-networking/recipes-filter/nftables/nftables/run-ptest b/meta-networking/recipes-filter/nftables/nftables/run-ptest
index 3217c743d..363a1ee25 100644
--- a/meta-networking/recipes-filter/nftables/nftables/run-ptest
+++ b/meta-networking/recipes-filter/nftables/nftables/run-ptest
@@ -1,17 +1,17 @@
1#!/bin/sh 1#!/bin/sh
2 2
3NFTABLESLIB=@libdir@/nftables 3NFTABLESLIB=@libdir@/nftables
4cd ${NFTABLESLIB}/ptest 4cd ${NFTABLESLIB}/ptest || exit 1
5 5
6LOG="${NFTABLESLIB}/ptest/nftables_ptest_$(date +%Y%m%d-%H%M%S).log" 6LOG="${NFTABLESLIB}/ptest/nftables_ptest_$(date +%Y%m%d-%H%M%S).log"
7tests/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} 7tests/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}"
8 8
9passed=`grep PASS: ${LOG}|wc -l` 9passed=$(grep -c PASS: "${LOG}")
10failed=`grep FAIL: ${LOG}|wc -l` 10failed=$(grep -c FAIL: "${LOG}")
11all=$((passed + failed)) 11all=$((passed + failed))
12 12
13( echo "=== Test Summary ===" 13( echo "=== Test Summary ==="
14 echo "TOTAL: ${all}" 14 echo "TOTAL: ${all}"
15 echo "PASSED: ${passed}" 15 echo "PASSED: ${passed}"
16 echo "FAILED: ${failed}" 16 echo "FAILED: ${failed}"
17) | tee -a ${LOG} 17) | tee -a "${LOG}"