Index: trunk/psLib/test/astro/tst_psTime_04.c
===================================================================
--- trunk/psLib/test/astro/tst_psTime_04.c	(revision 5036)
+++ trunk/psLib/test/astro/tst_psTime_04.c	(revision 5083)
@@ -15,6 +15,6 @@
  *  @author  Eric Van Alst, MHPCC
  *
- *  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2005-09-13 01:39:13 $
+ *  @version $Revision: 1.3 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2005-09-21 02:11:16 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -32,4 +32,5 @@
 static psS32 testTimeInit5(void);
 static psS32 testTimeInit6(void);
+static psS32 testTimer1(void);
 
 testDescription tests[] = {
@@ -40,4 +41,5 @@
                               {testTimeInit5,000,"p_psTimeInit",0,false},
                               {testTimeInit6,000,"p_psTimeInit",0,false},
+                              {testTimer1,000,"psTimer",0,false},
                               {NULL}
                           };
@@ -105,2 +107,31 @@
 }
 
+psS32 testTimer1(void)
+{
+    psF64 testTime = 0.0;
+    psF64 testTime2 = 0.0;
+    psF64 testTime3 = 0.0;
+
+    if ( !psTimerStart("newTime") ) {
+        printf("TimerStart Failed\n");
+        return 1;
+    }
+    testTime = psTimerMark("newTime");
+    if (testTime == 0.0) {
+        printf("TimerMark Failed\n");
+        return 2;
+    }
+    testTime2 = psTimerClear("newTime");
+    if (testTime2 == 0.0) {
+        printf("TimerClear Failed\n");
+        return 3;
+    }
+    psTimerStart("newTime");
+    testTime3 = psTimerStop();
+    if (testTime3 == 0.0) {
+        printf("TimerStop Failed\n");
+        return 4;
+    }
+    return 0;
+}
+
Index: trunk/psLib/test/astro/verified/tst_psTime_04.stderr
===================================================================
--- trunk/psLib/test/astro/verified/tst_psTime_04.stderr	(revision 5036)
+++ trunk/psLib/test/astro/verified/tst_psTime_04.stderr	(revision 5083)
@@ -73,2 +73,11 @@
 ---> TESTPOINT PASSED (psTime{p_psTimeInit} | tst_psTime_04.c)
 
+/***************************** TESTPOINT ******************************************\
+*             TestFile: tst_psTime_04.c                                            *
+*            TestPoint: psTime{psTimer}                                            *
+*             TestType: Positive                                                   *
+\**********************************************************************************/
+
+
+---> TESTPOINT PASSED (psTime{psTimer} | tst_psTime_04.c)
+
