Index: /trunk/psLib/test/math/Makefile.am
===================================================================
--- /trunk/psLib/test/math/Makefile.am	(revision 4550)
+++ /trunk/psLib/test/math/Makefile.am	(revision 4551)
@@ -41,5 +41,4 @@
 	tst_psStats02 \
 	tst_psStats03 \
-	tst_psStats04 \
 	tst_psStats05 \
 	tst_psStats06 \
@@ -94,5 +93,4 @@
 tst_psStats02_SOURCES =  tst_psStats02.c
 tst_psStats03_SOURCES =  tst_psStats03.c
-tst_psStats04_SOURCES =  tst_psStats04.c
 tst_psStats05_SOURCES =  tst_psStats05.c
 tst_psStats06_SOURCES =  tst_psStats06.c
Index: unk/psLib/test/math/tst_psStats04.c
===================================================================
--- /trunk/psLib/test/math/tst_psStats04.c	(revision 4550)
+++ 	(revision )
@@ -1,85 +1,0 @@
-/*****************************************************************************
-    This routine must ensure that PS_STAT_NVALUES is correctly computed
-    by the procedure psVectorStats().
- 
-    Note: The NVALUES stat was removed from the IfA requirements spec.  So,
-    this test is no longer in use.
- 
-    XXX: Must add tests for various data types, other than psF32.  Copy code
-    from tst_psStats00.c-tst_psStats02.c.
- *****************************************************************************/
-#include <stdio.h>
-#include "pslib_strict.h"
-#include "psTest.h"
-#define N1 1029
-#define N ((4 * N1) + 1)
-
-psS32 main()
-{
-    psStats *myStats    = NULL;
-    psS32 testStatus      = true;
-    psS32 i               = 0;
-    psVector *myVector  = NULL;
-    psVector *maskVector= NULL;
-
-    /*************************************************************************/
-    /*  Allocate and initialize data structures                      */
-    /*************************************************************************/
-    myStats = psStatsAlloc(PS_STAT_NVALUES);
-    myVector = psVectorAlloc(N, PS_TYPE_F32);
-    myVector->n = N;
-    maskVector = psVectorAlloc(N, PS_TYPE_U8);
-    maskVector->n = N;
-
-    // Set the appropriate values for the vector data.
-    for (i=0;i<N;i++) {
-        myVector->data.F32[i] = (float) i;
-    }
-
-    // Set the mask vector and calculate the expected maximum.
-    for (i=0;i<N;i++) {
-        if (i < (N/2)) {
-            maskVector->data.U8[i] = 0;
-        } else {
-            maskVector->data.U8[i] = 1;
-        }
-    }
-
-    /*************************************************************************/
-    /*  Call psVectorStats() with no vector mask.                    */
-    /*************************************************************************/
-    printPositiveTestHeader(stdout,
-                            "psStats functions",
-                            "PS_STAT_NVALUES");
-
-    myStats = psVectorStats(myStats, myVector, NULL, 0);
-
-    printf("Called psVectorStats() on a vector with no elements masked.\n");
-    printf("The expected nvalues was %d.  The calculated nvalues was %d.\n",
-           N, myStats->nValues);
-    if (myStats->nValues == N) {
-        testStatus = true;
-    } else {
-        testStatus = false;
-    }
-
-    /*************************************************************************/
-    /*  Call psVectorStats() with vector mask.                       */
-    /*************************************************************************/
-    myStats = psVectorStats(myStats, myVector, maskVector, 1);
-    printf("Called psVectorStats() on a vector with last N/2 elements masked.\n");
-    printf("The expected nvalues was %d.  The calculated nvalues was %d.\n",
-           N/2, myStats->nValues);
-    if (myStats->nValues == N/2) {
-        testStatus = true;
-    } else {
-        testStatus = false;
-    }
-
-    printFooter(stdout,
-                "psHash functions",
-                "psHashAlloc()",
-                testStatus);
-
-    return (!testStatus);
-}
