Index: trunk/psLib/test/astronomy/tst_psTime_01.c
===================================================================
--- trunk/psLib/test/astronomy/tst_psTime_01.c	(revision 1761)
+++ trunk/psLib/test/astronomy/tst_psTime_01.c	(revision 1788)
@@ -18,9 +18,10 @@
  *     M) Convert psTime to tm time
  *     N) Convert tm time to psTime
+ *     O) Convert psTime time to LST
  *
  *  @author  Ross Harman, MHPCC
  *
- *  @version $Revision: 1.7 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2004-08-25 21:34:26 $
+ *  @version $Revision: 1.8 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2004-09-11 00:57:31 $
  *
  *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
@@ -45,5 +46,4 @@
     testTime->type = PS_TIME_TAI;
 
-
     // Test A - Get current TAI time
     printPositiveTestHeader(stdout,"psTime", "Get current TAI time");
@@ -52,5 +52,5 @@
 
 
-    //Test B - Print test time
+    // Test B - Print test time
     printPositiveTestHeader(stdout,"psTime", "Print test time");
     printf("Test time: Seconds = %ld Microseconds = %ld\n", (long)testTime->sec, (long)testTime->usec);
@@ -62,7 +62,7 @@
     char *isoString;
     isoString = psTimeToISO(testTime);
+    printf("%s\n", isoString);
     if(strncmp(isoString, testString, 256)) {
         printf("ERROR - ISO string incorrect\n");
-        printf("Expected: %s\n", testString);
         printf("Returned: %s\n", isoString);
     }
@@ -158,4 +158,11 @@
     printFooter(stdout, "psTime", "Convert tm time to psTime", true);
 
+
+    // Test O - psTime to LST
+    printPositiveTestHeader(stdout, "psTime", "Convert psTime time to LST");
+    double dblTime = psTimeToLST(testTime, 1);
+    printf("LST (rad): %lf\n", dblTime);
+    printFooter(stdout, "psTime", "Convert psTime time to LST", true);
+
     return 0;
 }
