Changeset 25027 for branches/pap/psLib/test/astro/tap_psTime_03.c
- Timestamp:
- Aug 7, 2009, 4:08:25 PM (17 years ago)
- Location:
- branches/pap
- Files:
-
- 2 edited
-
. (modified) (1 prop)
-
psLib/test/astro/tap_psTime_03.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/pap
- Property svn:mergeinfo changed
-
branches/pap/psLib/test/astro/tap_psTime_03.c
r13936 r25027 494 494 psFree(timeStr); 495 495 496 time= psTimeConvert(time, PS_TIME_TT);496 bool status = psTimeConvert(time, PS_TIME_TT); 497 497 timeStr = psTimeToISO(time); 498 498 is_str(timeStr, testTimeBStrTT[i], "TT ISO string"); … … 500 500 501 501 // Verify UTC ISO string 502 time= psTimeConvert(time, PS_TIME_UTC);502 status = psTimeConvert(time, PS_TIME_UTC); 503 503 time->leapsecond = testTimeBLeapsecond[i]; 504 504 timeStr = psTimeToISO(time); … … 506 506 psFree(timeStr); 507 507 508 time= psTimeConvert(time, PS_TIME_UT1);508 status = psTimeConvert(time, PS_TIME_UT1); 509 509 timeStr = psTimeToISO(time); 510 510 is_str(timeStr, testTimeBStrUT1[i], "UT1 ISO string");
Note:
See TracChangeset
for help on using the changeset viewer.
