IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 8966


Ignore:
Timestamp:
Sep 25, 2006, 3:47:22 PM (20 years ago)
Author:
drobbin
Message:

Due to Makefile errors, I can't tell which of these actually changed for sure. If necessary, do a diff.

Location:
trunk/psLib/test/types
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/types/execute_tap

    r8930 r8966  
    1515./tap_psPixels_all
    1616./tap_psHash_all
    17 ./tap_psBitSet_all
  • trunk/psLib/test/types/tap_psListIterator.c

    r8841 r8966  
    11#include <stdio.h>
    2 #include <string.h>
    32#include <pslib.h>
    43
  • trunk/psLib/test/types/tap_psMetadataConfigRead.c

    r8841 r8966  
    11#include <stdio.h>
    2 #include <string.h>
    32#include <pslib.h>
    43
  • trunk/psLib/test/types/tap_psMetadataItemParse.c

    r8841 r8966  
    11#include <pslib.h>
    2 #include <string.h>
    32
    43#include "tap.h"
  • trunk/psLib/test/types/tap_psMetadataIterator.c

    r8841 r8966  
    11#include <stdio.h>
    2 #include <string.h>
    32#include <pslib.h>
    43
  • trunk/psLib/test/types/tap_psMetadata_copying.c

    r8841 r8966  
    1212
    1313#include <pslib.h>
    14 #include <string.h>
    1514
    1615#include "tap.h"
  • trunk/psLib/test/types/tap_psMetadata_creating.c

    r8841 r8966  
    1414
    1515#include <pslib.h>
    16 #include <string.h>
    1716
    1817#include "tap.h"
  • trunk/psLib/test/types/tap_psMetadata_manip.c

    r8841 r8966  
    1212
    1313#include <pslib.h>
    14 #include <string.h>
    1514
    1615#include "tap.h"
  • trunk/psLib/test/types/tap_psMetadata_polynomials.c

    r8841 r8966  
    1212
    1313#include <pslib.h>
    14 #include <string.h>
    1514
    1615#include "tap.h"
  • trunk/psLib/test/types/tap_psMetadata_printing.c

    r8841 r8966  
    1111 */
    1212
    13 #include <stdio.h>
    14 #include <string.h>
    1513#include <fcntl.h>
    1614#include <pslib.h>
  • trunk/psLib/test/types/tst_psBitSet.c

    r4547 r8966  
    1717 *  @author  Ross Harman, MHPCC
    1818 *
    19  *  @version $Revision: 1.1 $  $Name: not supported by cvs2svn $
    20  *  @date  $Date: 2005-07-13 02:47:01 $
     19 *  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
     20 *  @date  $Date: 2006-09-26 01:47:22 $
    2121 *
    2222 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6969    }
    7070    if (bs->n != 3) {
    71         psError(PS_ERR_UNKNOWN,true,"Number of bytes for psBitSet incorrect (%d vs 3)",
     71        psError(PS_ERR_UNKNOWN,true,"Number of bytes for psBitSet incorrect (%ld vs 3)",
    7272                bs->n);
    7373        return 2;
     
    8888    }
    8989    if (bs->n != 4) {
    90         psError(PS_ERR_UNKNOWN,true,"Number of bytes for psBitSet incorrect (%d vs 4)",bs->n);
     90        psError(PS_ERR_UNKNOWN,true,"Number of bytes for psBitSet incorrect (%ld vs 4)",bs->n);
    9191        return 5;
    9292    }
  • trunk/psLib/test/types/tst_psList.c

    r6500 r8966  
    66 *  @author Robert DeSonia, MHPCC
    77 *
    8  *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2006-02-28 02:53:03 $
     8 *  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2006-09-26 01:47:22 $
    1010 *
    1111 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    853853        }
    854854        if (psMemGetRefCounter(arr->data[i]) != 2) {
    855             psError(PS_ERR_UNKNOWN, true,"Element %d had wrong reference count (%d).",
     855            psError(PS_ERR_UNKNOWN, true,"Element %d had wrong reference count (%ld).",
    856856                    i,psMemGetRefCounter(arr->data[i]));
    857857            return 1;
     
    891891        }
    892892        if (psMemGetRefCounter(arr->data[i]) != 2) {
    893             psError(PS_ERR_UNKNOWN, true,"Element %d had wrong reference count (%d).",
     893            psError(PS_ERR_UNKNOWN, true,"Element %d had wrong reference count (%ld).",
    894894                    i,psMemGetRefCounter(arr->data[i]));
    895895            return 1;
Note: See TracChangeset for help on using the changeset viewer.