mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +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>
This commit is contained in:
parent
e959a2a96e
commit
46d69cd07c
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user