aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2023-09-30 20:06:46 -0700
committerArmin Kuster <akuster808@gmail.com>2023-10-04 07:52:49 -0700
commit2bb6bb3dad2d2ca21cce628b053ee2fc94d7d8f8 (patch)
tree7eb83903d2c4dfafb07429d8d807c1c80d85b987
parentf1a083c94ab8240d798519344e1ee440ad0b5466 (diff)
downloadmeta-openembedded-contrib-2bb6bb3dad2d2ca21cce628b053ee2fc94d7d8f8.tar.gz
fftw: Fix ptest result reporting
Fixes AssertionError:- ptests which had no test results: ['fftw'] Signed-off-by: Khem Raj <raj.khem@gmail.com> (cherry picked from commit 46d69cd07c32aa67020b297bc26e47cde0a5b57c) Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--meta-oe/recipes-support/fftw/fftw/run-ptest15
1 files changed, 6 insertions, 9 deletions
diff --git a/meta-oe/recipes-support/fftw/fftw/run-ptest b/meta-oe/recipes-support/fftw/fftw/run-ptest
index 6d8dd96f02..4d19057975 100644
--- a/meta-oe/recipes-support/fftw/fftw/run-ptest
+++ b/meta-oe/recipes-support/fftw/fftw/run-ptest
@@ -10,21 +10,18 @@ cd ../fftwl
/usr/bin/perl -w ./check.pl -r -c=30 -v `pwd`/benchl
fftwl_result=$?
-echo -n "fftw test result:"
if [ $fftw_result = "0" ]; then
- echo PASSED
+ echo "PASS: fftw"
else
- echo FAILED
+ echo "FAIL: fftw"
fi
-echo -n "fftwf test result:"
if [ $fftwf_result = "0" ]; then
- echo PASSED
+ echo "PASS: fftwf"
else
- echo FAILED
+ echo "FAIL: fftwf"
fi
-echo -n "fftwl test result:"
if [ $fftwl_result = "0" ]; then
- echo PASSED
+ echo "PASS: fftwl"
else
- echo FAILED
+ echo "FAIL: fftwl"
fi