IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 27, 2006, 10:33:22 AM (20 years ago)
Author:
drobbin
Message:

Edited doxygen in psString.h. Updated tests (for removal of p_psTimeFromTM and psTimeToISO 1999-01-01T00:00:60 = 1998-12-31T23:59:60)

File:
1 edited

Legend:

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

    r6268 r7707  
    2323 *  @author  Eric Van Alst, MHPCC
    2424 *
    25  *  @version $Revision: 1.5 $  $Name: not supported by cvs2svn $
    26  *  @date  $Date: 2006-01-31 23:24:21 $
     25 *  @version $Revision: 1.6 $  $Name: not supported by cvs2svn $
     26 *  @date  $Date: 2006-06-27 20:33:22 $
    2727 *
    2828 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    721721    // Attempt to convert from NULL tm structure ptr
    722722    psLogMsg(__func__,PS_LOG_INFO,"Following should generate error message for NULL tm ptr");
    723     time = p_psTimeFromTM(tmTime);
     723    time = psTimeFromTM(tmTime);
    724724    if(time != NULL) {
    725725        psError(PS_ERR_UNKNOWN,true,"Did not return NULL for NULL tm ptr");
     
    735735    tmTime->tm_min  = testTime7TmMin;
    736736    tmTime->tm_sec  = testTime7TmSec;
    737     time = p_psTimeFromTM(tmTime);
     737    time = psTimeFromTM(tmTime);
    738738    if(time == NULL) {
    739739        psError(PS_ERR_UNKNOWN,true,"Did not expect NULL return value for valid tm structure");
     
    761761    tmTime->tm_min  = testTime8TmMin;
    762762    tmTime->tm_sec  = testTime8TmSec;
    763     time = p_psTimeFromTM(tmTime);
     763    time = psTimeFromTM(tmTime);
    764764    if(time == NULL) {
    765765        psError(PS_ERR_UNKNOWN,true,"Did not expect NULL return value for valid tm structure");
Note: See TracChangeset for help on using the changeset viewer.