IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 30, 2007, 2:08:52 PM (19 years ago)
Author:
gusciora
Message:

Removed psLogMsg() calls from the test code.

Location:
trunk/psLib/test/astro
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/astro/tap_psCoord.c

    r11180 r13084  
    55*  @author GLG, MHPCC
    66*
    7 *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    8 *  @date $Date: 2007-01-19 20:42:21 $
     7*  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     8*  @date $Date: 2007-05-01 00:08:52 $
    99*
    1010*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    366366        ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks");
    367367    }
    368     /* HERE
    369     */
    370368}
    371369
  • trunk/psLib/test/astro/tap_psCoord01.c

    r11663 r13084  
    1212*      values were obtained, and they nearly all fail now.
    1313*
    14 *    @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    15 *    @date  $Date: 2007-02-06 04:11:54 $
    16 *    @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    17 *    @date  $Date: 2007-02-06 04:11:54 $
     14*    @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     15*    @date  $Date: 2007-05-01 00:08:52 $
     16*    @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     17*    @date  $Date: 2007-05-01 00:08:52 $
    1818*
    1919*    Copyright 2005 Maui High Performance Computing Center, Univ. of Hawaii
     
    995995
    996996
    997     /* HERE
     997    /*
    998998        #define DEG_INC2 15.0
    999999        #define VERBOSE 0
  • trunk/psLib/test/astro/tap_psCoord02.c

    r11657 r13084  
    77*  XXX: These tests should probably be split among several files
    88*
    9 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    10 *  @date $Date: 2007-02-06 01:01:05 $
     9*  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     10*  @date $Date: 2007-05-01 00:08:52 $
    1111*
    1212*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    509509    // psPlaneTransformDeriv()
    510510    // Ensure psPlaneTransformDeriv() returns NULL for NULL input plane
    511     // psLogMsg(__func__,PS_LOG_INFO,"Following should generate error message");
    512511    // Following should generate error message
    513512    // XXX: un-NULL the first parameter since we test that above
     
    549548        ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks");
    550549    }
    551     /* HERE
    552     */
    553550}
    554551
  • trunk/psLib/test/astro/tap_psEarthOrientation_corrections.c

    r12607 r13084  
    1111 *
    1212 */
    13 
    1413#include <pslib.h>
    1514#include <string.h>
    16 
    1715#include "tap.h"
    1816#include "pstap.h"
     
    2826int main(void)
    2927{
     28    psLogSetFormat("HLNM");
     29    psLogSetLevel(PS_LOG_INFO);
    3030    plan_tests(8);
    31 
    32 //    diag("Tests for psEarthOrientation Correction Functions");
    3331
    3432    // Initialize library internal structures
     
    297295        //Return NULL for NULL time input
    298296        psEarthPole *pcorr = NULL;
    299         psLogMsg(__func__,PS_LOG_INFO,"Following should generate error message");
     297        // Following should generate error message
    300298        pcorr = psEOC_PrecessionCorr(empty, PS_IERS_A);
    301299        if (pcorr != NULL) {
     
    306304     
    307305        //Return NULL for Invalid IERS table
    308         psLogMsg(__func__,PS_LOG_INFO,"Following should generate error message");
     306        // Following should generate error message
    309307        pcorr = psEOC_PrecessionCorr(time2, 3);
    310308        if (pcorr != NULL) {
     
    464462     
    465463        //Return NULL for NULL input time
    466         psLogMsg(__func__,PS_LOG_INFO,"Following should generate error message");
     464        // Following should generate error message
    467465        eop = psEOC_PolarTideCorr(empty);
    468466        if (eop != NULL) {
     
    501499     
    502500        //Return NULL for NULL input time.
    503         psLogMsg(__func__,PS_LOG_INFO,"Following should generate error message");
     501        // Following should generate error message
    504502        nute = psEOC_NutationCorr(empty);
    505503        if (nute != NULL) {
Note: See TracChangeset for help on using the changeset viewer.