IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 30, 2007, 2:08:52 PM (19 years ago)
Author:
gusciora
Message:

Removed psLogMsg() calls from the test code.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/math/tap_psPolynomial.c

    r10820 r13084  
    1616*    XXX: Compare to FLT_EPSILON
    1717*
    18 *    @version $Revision: 1.1 $  $Name: not supported by cvs2svn $
    19 *    @date $Date: 2006-12-21 20:05:12 $
     18*    @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
     19*    @date $Date: 2007-05-01 00:08:52 $
    2020*
    2121*  Copyright 2004-2005 Maui High Performance Computing Center, Univ. of Hawaii
     
    7777    if (0) {
    7878        // Attempt to allocate with negative order
    79         psLogMsg(__func__,PS_LOG_INFO,"Following should generate error msg for negative terms");
     79        // Following should generate error msg for negative terms
    8080        if (psPolynomial1DAlloc(PS_POLYNOMIAL_ORD, -1) != NULL) {
    8181            diag("psPolynomial1DAlloc() Returned structure but expected NULL");
     
    124124    if (0) {
    125125        // Attempt to allocate with negative order
    126         psLogMsg(__func__,PS_LOG_INFO,"Following should generate error msg for negative terms");
     126        // Following should generate error msg for negative terms
    127127        if (psPolynomial2DAlloc(PS_POLYNOMIAL_ORD, -1, 1) != NULL) {
    128128            diag("psPolynomial2DAlloc() returned structure but expected NULL");
    129129        }
    130130        // Attempt to allocate with negative order
    131         psLogMsg(__func__,PS_LOG_INFO,"Following should generate error msg for negative terms");
     131        // Following should generate error msg for negative terms
    132132        if (psPolynomial2DAlloc(PS_POLYNOMIAL_ORD, 1, -1) != NULL) {
    133133            diag("psPolynomial2DAlloc() returned structure but expected NULL");
     
    181181    if (0) {
    182182        // Attempt to allocate with negative order
    183         psLogMsg(__func__,PS_LOG_INFO,"Following should generate error msg for negative terms");
     183        // Following should generate error msg for negative terms
    184184        if (psPolynomial3DAlloc(PS_POLYNOMIAL_ORD, -1, 1, 1) != NULL) {
    185185            diag("psPolynomial3DAlloc(): returned structure but expected NULL");
    186186        }
    187187        // Attempt to allocate with negative order
    188         psLogMsg(__func__,PS_LOG_INFO,"Following should generate error msg for negative terms");
     188        // Following should generate error msg for negative terms
    189189        if (psPolynomial3DAlloc(PS_POLYNOMIAL_ORD, 1, -1, 1) != NULL) {
    190190            diag("psPolynomial3DAlloc() returned structure but expected NULL");
    191191        }
    192192        // Attempt to allocate with negative order
    193         psLogMsg(__func__,PS_LOG_INFO,"Following should generate error msg for negative terms");
     193        // Following should generate error msg for negative terms
    194194        if (psPolynomial3DAlloc(PS_POLYNOMIAL_ORD, 1, 1, -1) != NULL) {
    195195            diag("psPolynomial3DAlloc(): returned structure but expected NULL");
     
    247247    if (0) {
    248248        // Attempt to allocate with negative order
    249         psLogMsg(__func__,PS_LOG_INFO,"Following should generate error msg for negative terms");
     249        // Following should generate error msg for negative terms
    250250        if (psPolynomial4DAlloc(PS_POLYNOMIAL_ORD, -1, 1, 1, 1) != NULL) {
    251251            diag("psPolynomial4DAlloc(): returned structure but expected NULL");
    252252        }
    253253        // Attempt to allocate with negative order
    254         psLogMsg(__func__,PS_LOG_INFO,"Following should generate error msg for negative terms");
     254        // Following should generate error msg for negative terms
    255255        if (psPolynomial4DAlloc(PS_POLYNOMIAL_ORD, 1, -1, 1, 1) != NULL) {
    256256            diag("psPolynomial4DAlloc(): returned structure but expected NULL");
     
    258258        }
    259259        // Attempt to allocate with negative order
    260         psLogMsg(__func__,PS_LOG_INFO,"Following should generate error msg for negative terms");
     260        // Following should generate error msg for negative terms
    261261        if (psPolynomial4DAlloc(PS_POLYNOMIAL_ORD, 1, 1, -1, 1) != NULL) {
    262262            diag("psPolynomial4DAlloc(): returned structure but expected NULL");
     
    264264        }
    265265        // Attempt to allocate with negative order
    266         psLogMsg(__func__,PS_LOG_INFO,"Following should generate error msg for negative terms");
     266        // Following should generate error msg for negative terms
    267267        if (psPolynomial4DAlloc(PS_POLYNOMIAL_ORD, 1, 1, 1, -1) != NULL) {
    268268            diag("psPolynomial4DAlloc(): returned structure but expected NULL");
Note: See TracChangeset for help on using the changeset viewer.