diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-03-10 18:11:51 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-03-12 23:39:13 +0000 |
commit | bcea309f16cc5985138b8779e624b9f683f24360 (patch) | |
tree | 8d5b8234e9556236b8dde481ca4790b205e70cc9 | |
parent | cdb777a5731a5ccc109f4276cdb84738733f6380 (diff) | |
download | poky-bcea309f16cc5985138b8779e624b9f683f24360.tar.gz |
bc: Fix ptest test output naming
The quoting in the script was mangled leading to "0" tests being
found by our log parsing code. Fix the quoting to allow the correct
test counts to appear.
(From OE-Core rev: 5ad2ee63396cb27823dcd022878764bc69e619e9)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/bc/bc/run-ptest | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-extended/bc/bc/run-ptest b/meta/recipes-extended/bc/bc/run-ptest index 66a1b9d708..ba5abe6805 100644 --- a/meta/recipes-extended/bc/bc/run-ptest +++ b/meta/recipes-extended/bc/bc/run-ptest | |||
@@ -2,8 +2,8 @@ | |||
2 | 2 | ||
3 | for TEST in *.b; do | 3 | for TEST in *.b; do |
4 | if bc -l $TEST </dev/null; then | 4 | if bc -l $TEST </dev/null; then |
5 | echo “PASS: bc/$TEST” | 5 | echo "PASS: bc/$TEST" |
6 | else | 6 | else |
7 | echo “FAIL: bc/$TEST” | 7 | echo "FAIL: bc/$TEST" |
8 | fi | 8 | fi |
9 | done | 9 | done |