summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2023-03-10 18:11:51 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-03-12 23:36:44 +0000
commit5ad2ee63396cb27823dcd022878764bc69e619e9 (patch)
tree4725f24457676b093e9432195d6a849e51c577e9 /meta/recipes-extended
parent0c8e91acc8225a51f84b95faa96bfee1e293b093 (diff)
downloadopenembedded-core-5ad2ee63396cb27823dcd022878764bc69e619e9.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. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r--meta/recipes-extended/bc/bc/run-ptest4
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 @@
for TEST in *.b; do
if bc -l $TEST </dev/null; then
- echo “PASS: bc/$TEST”
+ echo "PASS: bc/$TEST"
else
- echo “FAIL: bc/$TEST”
+ echo "FAIL: bc/$TEST"
fi
done