IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 11665


Ignore:
Timestamp:
Feb 6, 2007, 10:31:57 AM (19 years ago)
Author:
gusciora
Message:

Removed tests that cause an abort. Preserved ok() failure.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/sys/tap_psMemory.c

    r10903 r11665  
    66*  @author Robert DeSonia, MHPCC
    77*
    8 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    9 *  @date $Date: 2007-01-04 22:34:06 $
     8*  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     9*  @date $Date: 2007-02-06 20:31:57 $
     10*
     11*  XXXX: Several tests fail with an Abort and are commented out.
    1012*
    1113*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3840psS32 main(psS32 argc, char* argv[])
    3941{
    40     plan_tests(1);
     42    psLogSetFormat("HLNM");
     43    psLogSetLevel(PS_LOG_INFO);
     44    plan_tests(15);
    4145
    4246    void TPFreeReferencedMemory( void );
    43     TPFreeReferencedMemory();
     47    if (1) {
     48        TPFreeReferencedMemory();
     49    }
    4450
    4551    void TPOutOfMemory( void );
    46     TPOutOfMemory();
     52    ok(false, "XXXX: Skipping TPOutOfMemory() because of test abort failure");
     53    if (0) {
     54        TPOutOfMemory();
     55    }
    4756
    4857    void TPReallocOutOfMemory( void );
    49     TPReallocOutOfMemory();
     58    ok(false, "XXXX: Skipping TPReallocOutOfMemory() because of test abort failure");
     59    if (0) {
     60        TPReallocOutOfMemory();
     61    }
    5062
    5163    void TPCheckBufferPositive( void );
    52     TPCheckBufferPositive();
     64    if (1) {
     65        TPCheckBufferPositive();
     66    }
    5367
    5468    void TPrealloc( void );
    55     TPrealloc();
     69    if (1) {
     70        TPrealloc();
     71    }
    5672
    5773    void TPallocCallback( void );
    58     TPallocCallback();
     74    if (1) {
     75        TPallocCallback();
     76    }
    5977
    6078    void TPcheckLeaks( void );
    61     TPcheckLeaks();
     79    ok(false, "XXXX: Skipping TPcheckLeaks() because of test abort failure");
     80    if (0) {
     81        TPcheckLeaks();
     82    }
    6283
    6384    // psMemProblemCallbackSet() has been removed -JH
     85    ok(false, "XXXX: Skipping psMemProblemCallbackSet() because of test abort failure");
    6486    #if 0
    6587
    6688    void TPmemCorruption( void );
    67     TPmemCorruption();
     89    if (1) {
     90        TPmemCorruption();
     91    }
    6892    #endif
    6993
    7094    void TPmultipleFree( void );
    71     TPmultipleFree();
    72 }
    73 
     95    ok(false, "XXXX: Skipping TPmultipleFree() because of test abort failure");
     96    if (0) {
     97        TPmultipleFree();
     98    }
     99}
    74100
    75101// Testpoint #449, psAlloc shall allocate memory blocks writeable by caller.
Note: See TracChangeset for help on using the changeset viewer.