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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.