- Timestamp:
- Apr 30, 2007, 2:08:52 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/astro/tap_psEarthOrientation_corrections.c
r12607 r13084 11 11 * 12 12 */ 13 14 13 #include <pslib.h> 15 14 #include <string.h> 16 17 15 #include "tap.h" 18 16 #include "pstap.h" … … 28 26 int main(void) 29 27 { 28 psLogSetFormat("HLNM"); 29 psLogSetLevel(PS_LOG_INFO); 30 30 plan_tests(8); 31 32 // diag("Tests for psEarthOrientation Correction Functions");33 31 34 32 // Initialize library internal structures … … 297 295 //Return NULL for NULL time input 298 296 psEarthPole *pcorr = NULL; 299 psLogMsg(__func__,PS_LOG_INFO,"Following should generate error message");297 // Following should generate error message 300 298 pcorr = psEOC_PrecessionCorr(empty, PS_IERS_A); 301 299 if (pcorr != NULL) { … … 306 304 307 305 //Return NULL for Invalid IERS table 308 psLogMsg(__func__,PS_LOG_INFO,"Following should generate error message");306 // Following should generate error message 309 307 pcorr = psEOC_PrecessionCorr(time2, 3); 310 308 if (pcorr != NULL) { … … 464 462 465 463 //Return NULL for NULL input time 466 psLogMsg(__func__,PS_LOG_INFO,"Following should generate error message");464 // Following should generate error message 467 465 eop = psEOC_PolarTideCorr(empty); 468 466 if (eop != NULL) { … … 501 499 502 500 //Return NULL for NULL input time. 503 psLogMsg(__func__,PS_LOG_INFO,"Following should generate error message");501 // Following should generate error message 504 502 nute = psEOC_NutationCorr(empty); 505 503 if (nute != NULL) {
Note:
See TracChangeset
for help on using the changeset viewer.
