IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
May 8, 2025, 4:42:12 PM (12 months ago)
Author:
eugene
Message:

remove old deprecated tests, add some new ones

Location:
trunk/psLib/test
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test

    • Property svn:ignore
      •  

        old new  
        66*.da
        77gmon.out
         8test.00.jpg
         9test.01.jpg
         10test.02.jpg
         11test.03.jpg
         12test.04.jpg
         13test.05.jpg
         14test.06.jpg
         15test.07.jpg
         16test.08.jpg
         17test.09.jpg
         18test.10.jpg
         19test.11.jpg
         20test.12.jpg
         21test.im.fits
         22test.mk.fits
         23test.sm1.fits
         24test.sm2.fits
         25test.sm3.fits
         26test.sm4.fits
         27tmpImages
         28tst_psTrace02_OUT
  • trunk/psLib/test/imageops

    • Property svn:ignore
      •  

        old new  
        3838tap_psImageMapFit
        3939tap_psImageMapFit2
         40tap_psImageCovariance
         41tap_psImageSmoothMask_Threaded
         42test-suite.log
  • trunk/psLib/test/imageops/tap_psImageInterpolate3.c

    r29929 r42822  
    7474        // point (1) : center of center pixel
    7575        interpOK = psImageInterpolate(&imageVal, NULL, NULL, xCenter + 0.5, yCenter + 0.5, interp);
     76        ok (interpOK == PS_INTERPOLATE_STATUS_GOOD, "ok pixel");
    7677        pt1->data.F32[i] = imageVal;
    7778
    7879        // point (2) : edge of center pixel
    7980        interpOK = psImageInterpolate(&imageVal, NULL, NULL, xCenter + 0.5, yCenter, interp);
     81        ok (interpOK == PS_INTERPOLATE_STATUS_GOOD, "ok pixel");
    8082        pt2->data.F32[i] = imageVal;
    8183
    8284        // point (3) : corner of center pixel
    8385        interpOK = psImageInterpolate(&imageVal, NULL, NULL, xCenter, yCenter, interp);
     86        ok (interpOK == PS_INTERPOLATE_STATUS_GOOD, "ok pixel");
    8487        pt3->data.F32[i] = imageVal;
    8588
     
    102105
    103106        interpOK = psImageInterpolate(&imageVal, &varianceVal, NULL, xCenter + 0.5, yCenter + 0.5, interp);
     107        ok (interpOK == PS_INTERPOLATE_STATUS_GOOD, "ok pixel");
    104108        psStatsInit(stats);
    105109        psVectorStats(stats, pt1, NULL, NULL, 0);
     
    107111       
    108112        interpOK = psImageInterpolate(&imageVal, &varianceVal, NULL, xCenter + 0.5, yCenter, interp);
     113        ok (interpOK == PS_INTERPOLATE_STATUS_GOOD, "ok pixel");
    109114        psStatsInit(stats);
    110115        psVectorStats(stats, pt2, NULL, NULL, 0);
     
    112117       
    113118        interpOK = psImageInterpolate(&imageVal, &varianceVal, NULL, xCenter, yCenter, interp);
     119        ok (interpOK == PS_INTERPOLATE_STATUS_GOOD, "ok pixel");
    114120        psStatsInit(stats);
    115121        psVectorStats(stats, pt3, NULL, NULL, 0);
Note: See TracChangeset for help on using the changeset viewer.