diff options
| author | Khem Raj <raj.khem@gmail.com> | 2023-09-30 20:06:46 -0700 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-10-02 10:03:23 -0700 |
| commit | 46d69cd07c32aa67020b297bc26e47cde0a5b57c (patch) | |
| tree | 9503118af2f8929b566158694ebf3a2a23c74033 | |
| parent | e959a2a96e45eb59e2b5ec1d769a9e4bbf81f323 (diff) | |
| download | meta-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-ptest | 15 |
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 |
| 11 | fftwl_result=$? | 11 | fftwl_result=$? |
| 12 | 12 | ||
| 13 | echo -n "fftw test result:" | ||
| 14 | if [ $fftw_result = "0" ]; then | 13 | if [ $fftw_result = "0" ]; then |
| 15 | echo PASSED | 14 | echo "PASS: fftw" |
| 16 | else | 15 | else |
| 17 | echo FAILED | 16 | echo "FAIL: fftw" |
| 18 | fi | 17 | fi |
| 19 | echo -n "fftwf test result:" | ||
| 20 | if [ $fftwf_result = "0" ]; then | 18 | if [ $fftwf_result = "0" ]; then |
| 21 | echo PASSED | 19 | echo "PASS: fftwf" |
| 22 | else | 20 | else |
| 23 | echo FAILED | 21 | echo "FAIL: fftwf" |
| 24 | fi | 22 | fi |
| 25 | echo -n "fftwl test result:" | ||
| 26 | if [ $fftwl_result = "0" ]; then | 23 | if [ $fftwl_result = "0" ]; then |
| 27 | echo PASSED | 24 | echo "PASS: fftwl" |
| 28 | else | 25 | else |
| 29 | echo FAILED | 26 | echo "FAIL: fftwl" |
| 30 | fi | 27 | fi |
