Index: /trunk/psLib/src/astro/psEarthOrientation.c
===================================================================
--- /trunk/psLib/src/astro/psEarthOrientation.c	(revision 5523)
+++ /trunk/psLib/src/astro/psEarthOrientation.c	(revision 5524)
@@ -8,6 +8,6 @@
 *  @author Robert Daniel DeSonia, MHPCC
 *
-*  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-11-16 02:40:13 $
+*  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-11-16 20:52:23 $
 *
 *  Copyright 2005 Maui High Performance Computing Center, University of Hawaii
@@ -165,4 +165,5 @@
     psFree(yCoeff);
     psFree(sCoeff);
+    psFree(eocMetadata);
 
     return true;
Index: /trunk/psLib/src/sys/psConfigure.c
===================================================================
--- /trunk/psLib/src/sys/psConfigure.c	(revision 5523)
+++ /trunk/psLib/src/sys/psConfigure.c	(revision 5524)
@@ -13,6 +13,6 @@
  *  @author Robert DeSonia, MHPCC
  *
- *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
- *  @date $Date: 2005-07-12 19:12:01 $
+ *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
+ *  @date $Date: 2005-11-16 20:52:23 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -20,4 +20,5 @@
 #include "psString.h"
 #include "psTime.h"
+#include "psEarthOrientation.h"
 #include "psError.h"
 #include "psConfigure.h"
@@ -43,4 +44,9 @@
         return;
     }
+    if(!p_psEOCInit()) {
+        psError(PS_ERR_BAD_PARAMETER_VALUE, true,
+                PS_ERRORTEXT_psConfigure_INITIALIZATION_FAILED, "psEOC");
+        return;
+    }
 }
 
@@ -54,3 +60,8 @@
         return;
     }
+    if(!p_psEOCFinalize()) {
+        psError(PS_ERR_BAD_PARAMETER_VALUE, true,
+                PS_ERRORTEXT_psConfigure_FINALIZATION_FAILED, "psEOC");
+        return;
+    }
 }
Index: /trunk/psLib/test/astro/tst_psEarthOrientation.c
===================================================================
--- /trunk/psLib/test/astro/tst_psEarthOrientation.c	(revision 5523)
+++ /trunk/psLib/test/astro/tst_psEarthOrientation.c	(revision 5524)
@@ -5,6 +5,6 @@
 *  @author d-Rob, MHPCC
 *
-*  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
-*  @date $Date: 2005-11-16 02:40:13 $
+*  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
+*  @date $Date: 2005-11-16 20:52:23 $
 *
 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -171,16 +171,16 @@
     psFree(UT1time);
     //Check return values from valid precession input
-    /*
-        pmodel = psEOC_PrecessionModel(time);
-        if ( pmodel == NULL ) {
-            psError(PS_ERR_BAD_PARAMETER_NULL, false,
-                    "psEOC_PrecessionModel returned NULL for valid input.\n");
-            return 3;
-        } else {
-            printf("Precession Model output = x,y,s = %.8g, %.8g, %.8g\n",
-                   pmodel->x, pmodel->y, pmodel->s);
-        }
-        psFree(pmodel);
-    */
+
+    pmodel = psEOC_PrecessionModel(time);
+    if ( pmodel == NULL ) {
+        psError(PS_ERR_BAD_PARAMETER_NULL, false,
+                "psEOC_PrecessionModel returned NULL for valid input.\n");
+        return 3;
+    } else {
+        printf("Precession Model output = x,y,s = %.8g, %.8g, %.8g\n\n",
+               pmodel->x, pmodel->y, pmodel->s);
+    }
+    psFree(pmodel);
+
 
     //Tests for Precession Correction function//
@@ -228,9 +228,9 @@
 
     psFree(time);
-    /*    if (!p_psEOCFinalize() ) {
-            psError(PS_ERR_BAD_PARAMETER_VALUE, false, "EOC failed finalization!\n");
-            return 12;
-        }
-    */
+    if (!p_psEOCFinalize() ) {
+        psError(PS_ERR_BAD_PARAMETER_VALUE, false, "EOC failed finalization!\n");
+        return 12;
+    }
+
     return 0;
 }
Index: /trunk/psLib/test/astro/verified/tst_psEarthOrientation.stdout
===================================================================
--- /trunk/psLib/test/astro/verified/tst_psEarthOrientation.stdout	(revision 5523)
+++ /trunk/psLib/test/astro/verified/tst_psEarthOrientation.stdout	(revision 5524)
@@ -3,4 +3,6 @@
 
 Actual r,d = 0.61001,0.01999    Apparent r,d = 0.6100100000001365, 0.01999000000006505 
+Precession Model output = x,y,s = 1.1557751e+08, 8865375.4, -5.1231901e+14
+
 Precession Correction output (IERSA) = x,y,s = 0.26026728, 0.26026728, -0.61282361
 Precession Correction output (IERSB) = x,y,s = 0.26026728, 0.26026728, 0
