summaryrefslogtreecommitdiffstats
path: root/meta-oe
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 /meta-oe
parentf1a083c94ab8240d798519344e1ee440ad0b5466 (diff)
downloadmeta-openembedded-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>
Diffstat (limited to 'meta-oe')
-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
10/usr/bin/perl -w ./check.pl -r -c=30 -v `pwd`/benchl 10/usr/bin/perl -w ./check.pl -r -c=30 -v `pwd`/benchl
11fftwl_result=$? 11fftwl_result=$?
12 12
13echo -n "fftw test result:"
14if [ $fftw_result = "0" ]; then 13if [ $fftw_result = "0" ]; then
15 echo PASSED 14 echo "PASS: fftw"
16else 15else
17 echo FAILED 16 echo "FAIL: fftw"
18fi 17fi
19echo -n "fftwf test result:"
20if [ $fftwf_result = "0" ]; then 18if [ $fftwf_result = "0" ]; then
21 echo PASSED 19 echo "PASS: fftwf"
22else 20else
23 echo FAILED 21 echo "FAIL: fftwf"
24fi 22fi
25echo -n "fftwl test result:"
26if [ $fftwl_result = "0" ]; then 23if [ $fftwl_result = "0" ]; then
27 echo PASSED 24 echo "PASS: fftwl"
28else 25else
29 echo FAILED 26 echo "FAIL: fftwl"
30fi 27fi