summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2023-09-30 20:06:46 -0700
committerKhem Raj <raj.khem@gmail.com>2023-10-02 10:03:23 -0700
commit46d69cd07c32aa67020b297bc26e47cde0a5b57c (patch)
tree9503118af2f8929b566158694ebf3a2a23c74033
parente959a2a96e45eb59e2b5ec1d769a9e4bbf81f323 (diff)
downloadmeta-openembedded-46d69cd07c32aa67020b297bc26e47cde0a5b57c.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>
-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