]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
bc: Fix ptest test output naming
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 10 Mar 2023 18:11:51 +0000 (18:11 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 12 Mar 2023 23:36:44 +0000 (23:36 +0000)
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>
meta/recipes-extended/bc/bc/run-ptest

index 66a1b9d7087fdfeb9f94a3e06c02b5e56d74343e..ba5abe68058ebd9f96276da0398ca7583a3e2c00 100644 (file)
@@ -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