Changeset 13084 for trunk/psLib/test/astro
- Timestamp:
- Apr 30, 2007, 2:08:52 PM (19 years ago)
- Location:
- trunk/psLib/test/astro
- Files:
-
- 4 edited
-
tap_psCoord.c (modified) (2 diffs)
-
tap_psCoord01.c (modified) (2 diffs)
-
tap_psCoord02.c (modified) (3 diffs)
-
tap_psEarthOrientation_corrections.c (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/astro/tap_psCoord.c
r11180 r13084 5 5 * @author GLG, MHPCC 6 6 * 7 * @version $Revision: 1. 1$ $Name: not supported by cvs2svn $8 * @date $Date: 2007-0 1-19 20:42:21$7 * @version $Revision: 1.2 $ $Name: not supported by cvs2svn $ 8 * @date $Date: 2007-05-01 00:08:52 $ 9 9 * 10 10 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 366 366 ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks"); 367 367 } 368 /* HERE369 */370 368 } 371 369 -
trunk/psLib/test/astro/tap_psCoord01.c
r11663 r13084 12 12 * values were obtained, and they nearly all fail now. 13 13 * 14 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $15 * @date $Date: 2007-0 2-06 04:11:54$16 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $17 * @date $Date: 2007-0 2-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 $ 18 18 * 19 19 * Copyright 2005 Maui High Performance Computing Center, Univ. of Hawaii … … 995 995 996 996 997 /* HERE997 /* 998 998 #define DEG_INC2 15.0 999 999 #define VERBOSE 0 -
trunk/psLib/test/astro/tap_psCoord02.c
r11657 r13084 7 7 * XXX: These tests should probably be split among several files 8 8 * 9 * @version $Revision: 1. 2$ $Name: not supported by cvs2svn $10 * @date $Date: 2007-0 2-06 01:01:05$9 * @version $Revision: 1.3 $ $Name: not supported by cvs2svn $ 10 * @date $Date: 2007-05-01 00:08:52 $ 11 11 * 12 12 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 509 509 // psPlaneTransformDeriv() 510 510 // Ensure psPlaneTransformDeriv() returns NULL for NULL input plane 511 // psLogMsg(__func__,PS_LOG_INFO,"Following should generate error message");512 511 // Following should generate error message 513 512 // XXX: un-NULL the first parameter since we test that above … … 549 548 ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks"); 550 549 } 551 /* HERE552 */553 550 } 554 551 -
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.
