summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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