mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-11 04:49:58 +00:00
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 46d69cd07c)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
@@ -10,21 +10,18 @@ cd ../fftwl
|
|||||||
/usr/bin/perl -w ./check.pl -r -c=30 -v `pwd`/benchl
|
/usr/bin/perl -w ./check.pl -r -c=30 -v `pwd`/benchl
|
||||||
fftwl_result=$?
|
fftwl_result=$?
|
||||||
|
|
||||||
echo -n "fftw test result:"
|
|
||||||
if [ $fftw_result = "0" ]; then
|
if [ $fftw_result = "0" ]; then
|
||||||
echo PASSED
|
echo "PASS: fftw"
|
||||||
else
|
else
|
||||||
echo FAILED
|
echo "FAIL: fftw"
|
||||||
fi
|
fi
|
||||||
echo -n "fftwf test result:"
|
|
||||||
if [ $fftwf_result = "0" ]; then
|
if [ $fftwf_result = "0" ]; then
|
||||||
echo PASSED
|
echo "PASS: fftwf"
|
||||||
else
|
else
|
||||||
echo FAILED
|
echo "FAIL: fftwf"
|
||||||
fi
|
fi
|
||||||
echo -n "fftwl test result:"
|
|
||||||
if [ $fftwl_result = "0" ]; then
|
if [ $fftwl_result = "0" ]; then
|
||||||
echo PASSED
|
echo "PASS: fftwl"
|
||||||
else
|
else
|
||||||
echo FAILED
|
echo "FAIL: fftwl"
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user