Index: trunk/psLib/test/sys/tap_psConfigure.c
===================================================================
--- trunk/psLib/test/sys/tap_psConfigure.c	(revision 11685)
+++ trunk/psLib/test/sys/tap_psConfigure.c	(revision 12781)
@@ -11,6 +11,6 @@
  *  @author  Ross Harman, MHPCC
  *
- *  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
- *  @date  $Date: 2007-02-07 22:50:18 $
+ *  @version $Revision: 1.3 $  $Name: not supported by cvs2svn $
+ *  @date  $Date: 2007-04-10 21:09:31 $
  *
  *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
@@ -24,25 +24,18 @@
 
 
-static psS32 psLibVersion00(void);
-
-
 psS32 main(psS32 argc, char* argv[])
 {
-    plan_tests(1);
+    plan_tests(2);
 
-    psLibVersion00();
+    // Simple test of psLibVersion()
+    // XX: Must somehow verify the output is correct.
+    {
+        psMemId id = psMemGetId();
+        char *stringVal = NULL;
+        stringVal = psLibVersion();
+        ok(stringVal != NULL && strlen(stringVal), "Version is cool");
+        psFree(stringVal);
+        ok(!psMemCheckLeaks (id, NULL, NULL, false), "no memory leaks");
+    }
 }
 
-
-static psS32 psLibVersion00(void)
-{
-    diag("psLibVersion00");
-
-    char *stringVal = NULL;
-    stringVal = psLibVersion();
-    ok( stringVal != NULL && strlen(stringVal), "Version is cool");
-    psFree(stringVal);
-
-    return 0;
-}
-
