Changeset 11665
- Timestamp:
- Feb 6, 2007, 10:31:57 AM (19 years ago)
- File:
-
- 1 edited
-
trunk/psLib/test/sys/tap_psMemory.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/test/sys/tap_psMemory.c
r10903 r11665 6 6 * @author Robert DeSonia, MHPCC 7 7 * 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. 10 12 * 11 13 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 38 40 psS32 main(psS32 argc, char* argv[]) 39 41 { 40 plan_tests(1); 42 psLogSetFormat("HLNM"); 43 psLogSetLevel(PS_LOG_INFO); 44 plan_tests(15); 41 45 42 46 void TPFreeReferencedMemory( void ); 43 TPFreeReferencedMemory(); 47 if (1) { 48 TPFreeReferencedMemory(); 49 } 44 50 45 51 void TPOutOfMemory( void ); 46 TPOutOfMemory(); 52 ok(false, "XXXX: Skipping TPOutOfMemory() because of test abort failure"); 53 if (0) { 54 TPOutOfMemory(); 55 } 47 56 48 57 void TPReallocOutOfMemory( void ); 49 TPReallocOutOfMemory(); 58 ok(false, "XXXX: Skipping TPReallocOutOfMemory() because of test abort failure"); 59 if (0) { 60 TPReallocOutOfMemory(); 61 } 50 62 51 63 void TPCheckBufferPositive( void ); 52 TPCheckBufferPositive(); 64 if (1) { 65 TPCheckBufferPositive(); 66 } 53 67 54 68 void TPrealloc( void ); 55 TPrealloc(); 69 if (1) { 70 TPrealloc(); 71 } 56 72 57 73 void TPallocCallback( void ); 58 TPallocCallback(); 74 if (1) { 75 TPallocCallback(); 76 } 59 77 60 78 void TPcheckLeaks( void ); 61 TPcheckLeaks(); 79 ok(false, "XXXX: Skipping TPcheckLeaks() because of test abort failure"); 80 if (0) { 81 TPcheckLeaks(); 82 } 62 83 63 84 // psMemProblemCallbackSet() has been removed -JH 85 ok(false, "XXXX: Skipping psMemProblemCallbackSet() because of test abort failure"); 64 86 #if 0 65 87 66 88 void TPmemCorruption( void ); 67 TPmemCorruption(); 89 if (1) { 90 TPmemCorruption(); 91 } 68 92 #endif 69 93 70 94 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 } 74 100 75 101 // Testpoint #449, psAlloc shall allocate memory blocks writeable by caller.
Note:
See TracChangeset
for help on using the changeset viewer.
