IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 3, 2004, 3:05:00 PM (22 years ago)
Author:
desonia
Message:

changed the psError signature to match SDRS. Also made misc. cleanups as
I was combing the files.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/dataManip/tst_psMatrixVectorArithmetic03.c

    r2204 r2273  
    1515 *  @author  Ross Harman, MHPCC
    1616 *
    17  *  @version $Revision: 1.6 $  $Name: not supported by cvs2svn $
    18  *  @date  $Date: 2004-10-27 00:57:33 $
     17 *  @version $Revision: 1.7 $  $Name: not supported by cvs2svn $
     18 *  @date  $Date: 2004-11-04 01:05:00 $
    1919 *
    2020 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    221221    CREATE_AND_SET_VECTOR(vector6,F64,0,3);
    222222    if ( psBinaryOp(vector6,vector4,"+",NULL) != NULL ) {
    223         psError(__func__,"psBinaryOp should return null when out and in1 valid but in2 null.");
     223        psError(PS_ERR_UNKNOWN, true,"psBinaryOp should return null when out and in1 valid but in2 null.");
    224224        return 10;
    225225    }
     
    228228    vector4->type.dimen = PS_DIMEN_OTHER;
    229229    if ( psBinaryOp(NULL,vector4,"+",vector5) != NULL) {
    230         psError(__func__,"psBinaryOp should return null when input dimen PS_DIMEN_OTHER.");
     230        psError(PS_ERR_UNKNOWN, true,"psBinaryOp should return null when input dimen PS_DIMEN_OTHER.");
    231231        return 11;
    232232    }
     
    236236    CREATE_AND_SET_IMAGE(image10,F64,0,3,3);
    237237    if ( psBinaryOp(image10,inScalar,"+",vector4) == NULL ) {
    238         psError(__func__,"psBinaryOp should not return null when input/out dimension don't match.");
     238        psError(PS_ERR_UNKNOWN, true,"psBinaryOp should not return null when input/out dimension don't match.");
    239239        return 12;
    240240    }
Note: See TracChangeset for help on using the changeset viewer.