IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 1034


Ignore:
Timestamp:
Jun 14, 2004, 2:13:57 PM (22 years ago)
Author:
desonia
Message:

Changed testpoint header so that testpoints can be easily counted

Location:
trunk/psLib/test
Files:
64 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/FullUnitTest

    r937 r1034  
    1919#  RETURN : integer number of tests which failed
    2020#
    21 #  $Revision: 1.5 $  $Name: not supported by cvs2svn $
    22 #  $Date: 2004-06-08 23:50:56 $
     21#  $Revision: 1.6 $  $Name: not supported by cvs2svn $
     22#  $Date: 2004-06-15 00:13:57 $
    2323#
    2424#  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3737GetOptions("verbose!"=>\$verbose,
    3838           "recursive!"=>\$recursive,
    39            "silent!"=>\$silent);
     39           "silent!"=>\$silent,
     40           "clean!"=>\$clean);
    4041
    4142# Check if both silent and verbose options are set and if so stop the script
     
    5051    # Set the environment variable
    5152    $ENV{'PSLIB_ROOT'} = $PSLIB_ROOT;
    52     if ($verbose) {
    53         print("PSLIB_ROOT not found: set to $PSLIB_ROOT.\n");
    54     }
     53    print("PSLIB_ROOT not found: set to $PSLIB_ROOT.\n") if $verbose;
    5554}
    5655
     
    6362# total makes and tests performed
    6463$makeFailCount = 0;
    65 $testFailCount = 0;
    66 $totalTests = 0;
     64$testpointFailCount = 0;
     65$testDriverFailCount = 0;
     66$totalTestpoints = 0;
     67$totalTestDrivers = 0;
    6768$totalMakes = 0;
    6869
     
    9899    # Display message to user that all directories under the current will be
    99100    # tested
    100     print("Recursively testing current directory tree.\n");
     101    print("Recursively testing current directory tree.\n") if $verbose;
    101102    # Invoke subroutine to go to recursively test each directory in tree
    102103    &worm($ENV{"PWD"});
     
    104105
    105106# Check if there were any failures during make or testing
    106 if ($makeFailCount>0 || $testFailCount>0) {
     107if ($makeFailCount>0 || $testDriverFailCount>0) {
    107108    # Display summary of failures
    108109    print("\nMake Failures = $makeFailCount out of $totalMakes");
    109     print("\nTest Failures = $testFailCount out of $totalTests\n");
     110    print("\nTest Driver Failures = $testDriverFailCount out of $totalTestDrivers\n");
    110111    print("\nMakes that failed:\n  ".join("\n  ",@makesFailed) . "\n") if $makeFailCount;
    111     print("\nTests that failed:\n  ".join("\n  ",@testsFailed) . "\n") if $testFailCount;
     112    print("\nTests that failed:\n  ".join("\n  ",@testsFailed) . "\n") if $testDriverFailCount;
    112113} else {
    113114    # Display message of all makes and tests pass to user if silent option
    114115    # not specified
    115     print("\nAll $totalTests Tests Passed.\n") if (! $silent);
     116    print("\nAll $totalTestDrivers Test Drivers Passed with $totalTestpoints Testpoints.\n") if (! $silent);
    116117}
    117118
    118119# Exit with the number of tests that failed
    119 exit($testFailCount);
     120exit($testDriverFailCount);
    120121
    121122
     
    191192    # Display message to user in which directory testing is taken place only
    192193    # if the silent command option was not specified
    193     print("---- Testing: $pwd ----\n") if ( ! $silent);
     194    print("---- Entering $pwd ----\n") if ( ! $silent);
    194195
    195196    # Check for the existence of a file name Makefile in current directory
     
    199200        $totalMakes++;
    200201
    201         # Execute the make clean
    202         `make clean`;
    203 
    204         # Execute the make distclean
    205         `make distclean`;
     202        if ($clean) {
     203            # Execute the make clean
     204            `make clean`;
     205
     206            # Execute the make distclean
     207            `make distclean`;
     208        }
    206209
    207210        # Execute the make and save results
     
    265268
    266269            # Increment total number of test drivers executed
    267             $totalTests++;
     270            $totalTestDrivers++;
    268271
    269272            # Perform subdirectory checks only the first time a test
     
    282285                    # exist eventhough TST files have been found
    283286#                    print("Unable to execute test drivers in $base_dir\n");
    284                     print("No verified subdirectory present.\n");
     287                    print("No verified subdirectory present.\n") if ($verbose);
    285288                    # Increment test fail count
    286  #                   $testFailCount++;
     289 #                   $testDriverFailCount++;
    287290                    # Save the file failed
    288291#                    push(@testsFailed, $pwd . "/" . $files[$j]);
     
    295298            # Execute the test driver
    296299            system("./$files[$j] 1> temp/$files[$j].stdout 2> temp/$files[$j].stderr");
     300            $retVal = $?;
     301            # Count testpoints
     302            $totalPoints = `grep -c '***** TESTPOINT *****' temp/$files[$j].stdout`;
     303            $totalPoints += `grep -c '***** TESTPOINT *****' temp/$files[$j].stderr`;
     304            $failPoints = `grep "> TESTPOINT FAILED" temp/$files[$j].stdout | wc -l`;
     305            $failPoints += `grep "> TESTPOINT FAILED" temp/$files[$j].stderr | wc -l`;
     306            $testpointFailCount += $failPoints;
     307            $totalTestpoints += $totalPoints;
    297308            # Check result of test driver
    298             if ( ( ($? != 0) && ($files[$j] =~ /^TST/i) ) ||
    299                  ( ($? == 0) && ($files[$j] =~ /^ATST/i ) ) ) {
     309            if ( ( ($retVal != 0) && ($files[$j] =~ /^TST/i) ) ||
     310                 ( ($retVal == 0) && ($files[$j] =~ /^ATST/i ) ) ) {
    300311                # Display test driver failed
    301                 print("Test driver: $files[$j] Failed (Return value $?).\n");
     312                $failPoints++;
     313                print("Test driver: $files[$j] Failed (Return value $retVal).\n");
    302314                # Increment the total number of test failed
    303                 $testFailCount++;
     315                $testDriverFailCount++;
    304316                # Push the current working directory on the list of failed
    305317                push(@testsFailed, $pwd . "/" . $files[$j]);
     
    318330                if ( ($exitValue & 8) || ($exitValue & 64) ) {
    319331                    # Increment the total number of test failed
    320                     $testFailCount++;
     332                    $testDriverFailCount++;
    321333                    # Push test on failed list
     334                    print("Test failed ($failPoints out of $totalPoints testpoints failed)\n") if ( ! $silent);
    322335                    push(@testsFailed, $pwd . "/" . $files[$j]);
    323336                } else {
     
    331344                    if ( ($exitValue & 16) || ($exitValue & 128) ) {
    332345                        # Increment the total number of tests failed
    333                         $testFailCount++;
     346                        $testDriverFailCount++;
    334347                        # Push test on failed list
     348                        print("Test failed ($failPoints out of $totalPoints testpoints failed)\n") if ( ! $silent);
    335349                        push(@testsFailed, $pwd . "/" . $files[$j]);
    336350                    } else {
    337                        print("Test successful\n") if ( ! $silent);
     351                       print("Test successful ($totalPoints testpoints)\n") if ( ! $silent);
    338352                    }
    339353                }
     
    414428
    415429        # Display message to user that verified STDOUT file doesn't exist
    416         print("        File $streamFile doesn't exist.\n");
     430        print("        File $streamFile doesn't exist.\n") if ($verbose);
    417431
    418432        # Set exit value bit 1 to indicate proper failure
  • trunk/psLib/test/collections/verified/tst_psBitSet_01.stdout

    r991 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psBitSet_01.c                                          |
    3 |            TestPoint: psBitSet{Create psBitSet}                                  |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psBitSet_01.c                                          *
     3*            TestPoint: psBitSet{Create psBitSet}                                  *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77Creating psBitSet with 24 bits...
     
    1111---> TESTPOINT PASSED (psBitSet{Create psBitSet} | tst_psBitSet_01.c)
    1212
    13 /----------------------------- TESTPOINT ------------------------------------------\
    14 |             TestFile: tst_psBitSet_01.c                                          |
    15 |            TestPoint: psBitSet{Set bits}                                         |
    16 |             TestType: Positive                                                   |
    17 \----------------------------------------------------------------------------------/
     13/***************************** TESTPOINT ******************************************\
     14*             TestFile: tst_psBitSet_01.c                                          *
     15*            TestPoint: psBitSet{Set bits}                                         *
     16*             TestType: Positive                                                   *
     17\**********************************************************************************/
    1818
    1919Setting first bit...
     
    2525---> TESTPOINT PASSED (psBitSet{Set bits} | tst_psBitSet_01.c)
    2626
    27 /----------------------------- TESTPOINT ------------------------------------------\
    28 |             TestFile: tst_psBitSet_01.c                                          |
    29 |            TestPoint: psBitSet{Test bits}                                        |
    30 |             TestType: Positive                                                   |
    31 \----------------------------------------------------------------------------------/
     27/***************************** TESTPOINT ******************************************\
     28*             TestFile: tst_psBitSet_01.c                                          *
     29*            TestPoint: psBitSet{Test bits}                                        *
     30*             TestType: Positive                                                   *
     31\**********************************************************************************/
    3232
    3333Testing first bit...
     
    4040---> TESTPOINT PASSED (psBitSet{Test bits} | tst_psBitSet_01.c)
    4141
    42 /----------------------------- TESTPOINT ------------------------------------------\
    43 |             TestFile: tst_psBitSet_01.c                                          |
    44 |            TestPoint: psBitSet{Attempt to test negative bit}                     |
    45 |             TestType: Negative                                                   |
    46 |    ExpectedErrorText: Bit position too small: -4                                 |
    47 |  ExpectedStatusValue: 0                                                          |
    48 \----------------------------------------------------------------------------------/
     42/***************************** TESTPOINT ******************************************\
     43*             TestFile: tst_psBitSet_01.c                                          *
     44*            TestPoint: psBitSet{Attempt to test negative bit}                     *
     45*             TestType: Negative                                                   *
     46*    ExpectedErrorText: Bit position too small: -4                                 *
     47*  ExpectedStatusValue: 0                                                          *
     48\**********************************************************************************/
    4949
    5050
    5151---> TESTPOINT PASSED (psBitSet{Attempt to test negative bit} | tst_psBitSet_01.c)
    5252
    53 /----------------------------- TESTPOINT ------------------------------------------\
    54 |             TestFile: tst_psBitSet_01.c                                          |
    55 |            TestPoint: psBitSet{Attempt to test bit to large}                     |
    56 |             TestType: Negative                                                   |
    57 |    ExpectedErrorText: Bit position too large: 200                                |
    58 |  ExpectedStatusValue: 0                                                          |
    59 \----------------------------------------------------------------------------------/
     53/***************************** TESTPOINT ******************************************\
     54*             TestFile: tst_psBitSet_01.c                                          *
     55*            TestPoint: psBitSet{Attempt to test bit to large}                     *
     56*             TestType: Negative                                                   *
     57*    ExpectedErrorText: Bit position too large: 200                                *
     58*  ExpectedStatusValue: 0                                                          *
     59\**********************************************************************************/
    6060
    6161
    6262---> TESTPOINT PASSED (psBitSet{Attempt to test bit to large} | tst_psBitSet_01.c)
    6363
    64 /----------------------------- TESTPOINT ------------------------------------------\
    65 |             TestFile: tst_psBitSet_01.c                                          |
    66 |            TestPoint: psBitSet{Attempt to test bit in null BitSet}               |
    67 |             TestType: Negative                                                   |
    68 |    ExpectedErrorText: Null psBitSet for inBitSet argument                        |
    69 |  ExpectedStatusValue: 0                                                          |
    70 \----------------------------------------------------------------------------------/
     64/***************************** TESTPOINT ******************************************\
     65*             TestFile: tst_psBitSet_01.c                                          *
     66*            TestPoint: psBitSet{Attempt to test bit in null BitSet}               *
     67*             TestType: Negative                                                   *
     68*    ExpectedErrorText: Null psBitSet for inBitSet argument                        *
     69*  ExpectedStatusValue: 0                                                          *
     70\**********************************************************************************/
    7171
    7272
    7373---> TESTPOINT PASSED (psBitSet{Attempt to test bit in null BitSet} | tst_psBitSet_01.c)
    7474
    75 /----------------------------- TESTPOINT ------------------------------------------\
    76 |             TestFile: tst_psBitSet_01.c                                          |
    77 |            TestPoint: psBitSet{Attempt to set negative bit}                      |
    78 |             TestType: Negative                                                   |
    79 |    ExpectedErrorText: Bit position too small: -4                                 |
    80 |  ExpectedStatusValue: 0                                                          |
    81 \----------------------------------------------------------------------------------/
     75/***************************** TESTPOINT ******************************************\
     76*             TestFile: tst_psBitSet_01.c                                          *
     77*            TestPoint: psBitSet{Attempt to set negative bit}                      *
     78*             TestType: Negative                                                   *
     79*    ExpectedErrorText: Bit position too small: -4                                 *
     80*  ExpectedStatusValue: 0                                                          *
     81\**********************************************************************************/
    8282
    8383
    8484---> TESTPOINT PASSED (psBitSet{Attempt to set negative bit} | tst_psBitSet_01.c)
    8585
    86 /----------------------------- TESTPOINT ------------------------------------------\
    87 |             TestFile: tst_psBitSet_01.c                                          |
    88 |            TestPoint: psBitSet{Attempt to set bit to large}                      |
    89 |             TestType: Negative                                                   |
    90 |    ExpectedErrorText: Bit position too large: 200                                |
    91 |  ExpectedStatusValue: 0                                                          |
    92 \----------------------------------------------------------------------------------/
     86/***************************** TESTPOINT ******************************************\
     87*             TestFile: tst_psBitSet_01.c                                          *
     88*            TestPoint: psBitSet{Attempt to set bit to large}                      *
     89*             TestType: Negative                                                   *
     90*    ExpectedErrorText: Bit position too large: 200                                *
     91*  ExpectedStatusValue: 0                                                          *
     92\**********************************************************************************/
    9393
    9494
    9595---> TESTPOINT PASSED (psBitSet{Attempt to set bit to large} | tst_psBitSet_01.c)
    9696
    97 /----------------------------- TESTPOINT ------------------------------------------\
    98 |             TestFile: tst_psBitSet_01.c                                          |
    99 |            TestPoint: psBitSet{Attempt to set bit in null BitSet}                |
    100 |             TestType: Negative                                                   |
    101 |    ExpectedErrorText: Null psBitSet for inBitSet argument                        |
    102 |  ExpectedStatusValue: 0                                                          |
    103 \----------------------------------------------------------------------------------/
     97/***************************** TESTPOINT ******************************************\
     98*             TestFile: tst_psBitSet_01.c                                          *
     99*            TestPoint: psBitSet{Attempt to set bit in null BitSet}                *
     100*             TestType: Negative                                                   *
     101*    ExpectedErrorText: Null psBitSet for inBitSet argument                        *
     102*  ExpectedStatusValue: 0                                                          *
     103\**********************************************************************************/
    104104
    105105
    106106---> TESTPOINT PASSED (psBitSet{Attempt to set bit in null BitSet} | tst_psBitSet_01.c)
    107107
    108 /----------------------------- TESTPOINT ------------------------------------------\
    109 |             TestFile: tst_psBitSet_01.c                                          |
    110 |            TestPoint: psBitSet{Free psBitSet}                                    |
    111 |             TestType: Positive                                                   |
    112 \----------------------------------------------------------------------------------/
     108/***************************** TESTPOINT ******************************************\
     109*             TestFile: tst_psBitSet_01.c                                          *
     110*            TestPoint: psBitSet{Free psBitSet}                                    *
     111*             TestType: Positive                                                   *
     112\**********************************************************************************/
    113113
    114114
  • trunk/psLib/test/collections/verified/tst_psBitSet_02.stdout

    r805 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psBitSet_02.c                                          |
    3 |            TestPoint: psBitSet{Create two psBitSets}                             |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psBitSet_02.c                                          *
     3*            TestPoint: psBitSet{Create two psBitSets}                             *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77000000000000000000000000Þ
     
    1515---> TESTPOINT PASSED (psBitSet{Create two psBitSets} | tst_psBitSet_02.c)
    1616
    17 /----------------------------- TESTPOINT ------------------------------------------\
    18 |             TestFile: tst_psBitSet_02.c                                          |
    19 |            TestPoint: psBitSet{Perform binary AND with psBitSets}                |
    20 |             TestType: Positive                                                   |
    21 \----------------------------------------------------------------------------------/
     17/***************************** TESTPOINT ******************************************\
     18*             TestFile: tst_psBitSet_02.c                                          *
     19*            TestPoint: psBitSet{Perform binary AND with psBitSets}                *
     20*             TestType: Positive                                                   *
     21\**********************************************************************************/
    2222
    2323Result:
     
    2626---> TESTPOINT PASSED (psBitSet{Perform binary AND with psBitSets} | tst_psBitSet_02.c)
    2727
    28 /----------------------------- TESTPOINT ------------------------------------------\
    29 |             TestFile: tst_psBitSet_02.c                                          |
    30 |            TestPoint: psBitSet{Free psBitSets}                                   |
    31 |             TestType: Positive                                                   |
    32 \----------------------------------------------------------------------------------/
     28/***************************** TESTPOINT ******************************************\
     29*             TestFile: tst_psBitSet_02.c                                          *
     30*            TestPoint: psBitSet{Free psBitSets}                                   *
     31*             TestType: Positive                                                   *
     32\**********************************************************************************/
    3333
    3434
  • trunk/psLib/test/collections/verified/tst_psBitSet_03.stdout

    r805 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psBitSet_03.c                                          |
    3 |            TestPoint: psBitSet{Create two psBitSets}                             |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psBitSet_03.c                                          *
     3*            TestPoint: psBitSet{Create two psBitSets}                             *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77000000000000000000000000Þ
     
    1515---> TESTPOINT PASSED (psBitSet{Create two psBitSets} | tst_psBitSet_03.c)
    1616
    17 /----------------------------- TESTPOINT ------------------------------------------\
    18 |             TestFile: tst_psBitSet_03.c                                          |
    19 |            TestPoint: psBitSet{Perform binary OR with psBitSets}                 |
    20 |             TestType: Positive                                                   |
    21 \----------------------------------------------------------------------------------/
     17/***************************** TESTPOINT ******************************************\
     18*             TestFile: tst_psBitSet_03.c                                          *
     19*            TestPoint: psBitSet{Perform binary OR with psBitSets}                 *
     20*             TestType: Positive                                                   *
     21\**********************************************************************************/
    2222
    2323Result:
     
    2626---> TESTPOINT PASSED (psBitSet{Perform binary OR with psBitSets} | tst_psBitSet_03.c)
    2727
    28 /----------------------------- TESTPOINT ------------------------------------------\
    29 |             TestFile: tst_psBitSet_03.c                                          |
    30 |            TestPoint: psBitSet{Free psBitSets}                                   |
    31 |             TestType: Positive                                                   |
    32 \----------------------------------------------------------------------------------/
     28/***************************** TESTPOINT ******************************************\
     29*             TestFile: tst_psBitSet_03.c                                          *
     30*            TestPoint: psBitSet{Free psBitSets}                                   *
     31*             TestType: Positive                                                   *
     32\**********************************************************************************/
    3333
    3434
  • trunk/psLib/test/collections/verified/tst_psBitSet_04.stdout

    r805 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psBitSet_04.c                                          |
    3 |            TestPoint: psBitSet{Create two psBitSets}                             |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psBitSet_04.c                                          *
     3*            TestPoint: psBitSet{Create two psBitSets}                             *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77000000000000000000000000Þ
     
    1515---> TESTPOINT PASSED (psBitSet{Create two psBitSets} | tst_psBitSet_04.c)
    1616
    17 /----------------------------- TESTPOINT ------------------------------------------\
    18 |             TestFile: tst_psBitSet_04.c                                          |
    19 |            TestPoint: psBitSet{Perform binary XOR with psBitSets}                |
    20 |             TestType: Positive                                                   |
    21 \----------------------------------------------------------------------------------/
     17/***************************** TESTPOINT ******************************************\
     18*             TestFile: tst_psBitSet_04.c                                          *
     19*            TestPoint: psBitSet{Perform binary XOR with psBitSets}                *
     20*             TestType: Positive                                                   *
     21\**********************************************************************************/
    2222
    2323Result:
     
    2626---> TESTPOINT PASSED (psBitSet{Perform binary XOR with psBitSets} | tst_psBitSet_04.c)
    2727
    28 /----------------------------- TESTPOINT ------------------------------------------\
    29 |             TestFile: tst_psBitSet_04.c                                          |
    30 |            TestPoint: psBitSet{Free psBitSets}                                   |
    31 |             TestType: Positive                                                   |
    32 \----------------------------------------------------------------------------------/
     28/***************************** TESTPOINT ******************************************\
     29*             TestFile: tst_psBitSet_04.c                                          *
     30*            TestPoint: psBitSet{Free psBitSets}                                   *
     31*             TestType: Positive                                                   *
     32\**********************************************************************************/
    3333
    3434
  • trunk/psLib/test/collections/verified/tst_psBitSet_05.stdout

    r805 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psBitSet_05.c                                          |
    3 |            TestPoint: psBitSet{Create two psBitSets of different size}           |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psBitSet_05.c                                          *
     3*            TestPoint: psBitSet{Create two psBitSets of different size}           *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77000000000000000000000000Þ
     
    1111---> TESTPOINT PASSED (psBitSet{Create two psBitSets of different size} | tst_psBitSet_05.c)
    1212
    13 /----------------------------- TESTPOINT ------------------------------------------\
    14 |             TestFile: tst_psBitSet_05.c                                          |
    15 |            TestPoint: psBitSet{Attempt OR with psBitsets}                        |
    16 |             TestType: Negative                                                   |
    17 |    ExpectedErrorText: psBitSet sizes not the same                                |
    18 |  ExpectedStatusValue: 0                                                          |
    19 \----------------------------------------------------------------------------------/
     13/***************************** TESTPOINT ******************************************\
     14*             TestFile: tst_psBitSet_05.c                                          *
     15*            TestPoint: psBitSet{Attempt OR with psBitsets}                        *
     16*             TestType: Negative                                                   *
     17*    ExpectedErrorText: psBitSet sizes not the same                                *
     18*  ExpectedStatusValue: 0                                                          *
     19\**********************************************************************************/
    2020
    2121
    2222---> TESTPOINT PASSED (psBitSet{Attempt OR with psBitsets} | tst_psBitSet_05.c)
    2323
    24 /----------------------------- TESTPOINT ------------------------------------------\
    25 |             TestFile: tst_psBitSet_05.c                                          |
    26 |            TestPoint: psBitSet{Free psBitSets}                                   |
    27 |             TestType: Positive                                                   |
    28 \----------------------------------------------------------------------------------/
     24/***************************** TESTPOINT ******************************************\
     25*             TestFile: tst_psBitSet_05.c                                          *
     26*            TestPoint: psBitSet{Free psBitSets}                                   *
     27*             TestType: Positive                                                   *
     28\**********************************************************************************/
    2929
    3030
  • trunk/psLib/test/collections/verified/tst_psBitSet_06.stdout

    r959 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psBitSet_06.c                                          |
    3 |            TestPoint: psBitSet{Create two psBitSets}                             |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psBitSet_06.c                                          *
     3*            TestPoint: psBitSet{Create two psBitSets}                             *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77000000000000000000000000Þ
     
    1111---> TESTPOINT PASSED (psBitSet{Create two psBitSets} | tst_psBitSet_06.c)
    1212
    13 /----------------------------- TESTPOINT ------------------------------------------\
    14 |             TestFile: tst_psBitSet_06.c                                          |
    15 |            TestPoint: psBitSet{Perform invalid binary operation}                 |
    16 |             TestType: Negative                                                   |
    17 |    ExpectedErrorText: Invalid psBitMask binary operation                         |
    18 |  ExpectedStatusValue: 0                                                          |
    19 \----------------------------------------------------------------------------------/
     13/***************************** TESTPOINT ******************************************\
     14*             TestFile: tst_psBitSet_06.c                                          *
     15*            TestPoint: psBitSet{Perform invalid binary operation}                 *
     16*             TestType: Negative                                                   *
     17*    ExpectedErrorText: Invalid psBitMask binary operation                         *
     18*  ExpectedStatusValue: 0                                                          *
     19\**********************************************************************************/
    2020
    2121
    2222---> TESTPOINT PASSED (psBitSet{Perform binary XOR with psBitSets} | tst_psBitSet_06.c)
    2323
    24 /----------------------------- TESTPOINT ------------------------------------------\
    25 |             TestFile: tst_psBitSet_06.c                                          |
    26 |            TestPoint: psBitSet{Create negative size bitset}                      |
    27 |             TestType: Negative                                                   |
    28 |    ExpectedErrorText: Allocation size must be >= 0: size = -4                    |
    29 |  ExpectedStatusValue: 0                                                          |
    30 \----------------------------------------------------------------------------------/
     24/***************************** TESTPOINT ******************************************\
     25*             TestFile: tst_psBitSet_06.c                                          *
     26*            TestPoint: psBitSet{Create negative size bitset}                      *
     27*             TestType: Negative                                                   *
     28*    ExpectedErrorText: Allocation size must be >= 0: size = -4                    *
     29*  ExpectedStatusValue: 0                                                          *
     30\**********************************************************************************/
    3131
    3232
    3333---> TESTPOINT PASSED (psBitSet{Create negative size bitset} | tst_psBitSet_06.c)
    3434
    35 /----------------------------- TESTPOINT ------------------------------------------\
    36 |             TestFile: tst_psBitSet_06.c                                          |
    37 |            TestPoint: psBitSet{Attempt to free null BitSet}                      |
    38 |             TestType: Negative                                                   |
    39 |    ExpectedErrorText: Null psBitSet for inBitSet argument                        |
    40 |  ExpectedStatusValue: 0                                                          |
    41 \----------------------------------------------------------------------------------/
     35/***************************** TESTPOINT ******************************************\
     36*             TestFile: tst_psBitSet_06.c                                          *
     37*            TestPoint: psBitSet{Attempt to free null BitSet}                      *
     38*             TestType: Negative                                                   *
     39*    ExpectedErrorText: Null psBitSet for inBitSet argument                        *
     40*  ExpectedStatusValue: 0                                                          *
     41\**********************************************************************************/
    4242
    4343
    4444---> TESTPOINT PASSED (psBitSet{Attempt to free null BitSet} | tst_psBitSet_06.c)
    4545
    46 /----------------------------- TESTPOINT ------------------------------------------\
    47 |             TestFile: tst_psBitSet_06.c                                          |
    48 |            TestPoint: psBitSet{Free psBitSets}                                   |
    49 |             TestType: Positive                                                   |
    50 \----------------------------------------------------------------------------------/
     46/***************************** TESTPOINT ******************************************\
     47*             TestFile: tst_psBitSet_06.c                                          *
     48*            TestPoint: psBitSet{Free psBitSets}                                   *
     49*             TestType: Positive                                                   *
     50\**********************************************************************************/
    5151
    5252
  • trunk/psLib/test/collections/verified/tst_psList.stderr

    r1027 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psList.c                                               |
    3 |            TestPoint: psList{487-testListAlloc}                                  |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psList.c                                               *
     3*            TestPoint: psList{487-testListAlloc}                                  *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77 <DATE> <TIME> <HOST> |I|  testListAlloc|psListAlloc shall create a psList with either 0 or 1 element.
     
    99---> TESTPOINT PASSED (psList{487-testListAlloc} | tst_psList.c)
    1010
    11 /----------------------------- TESTPOINT ------------------------------------------\
    12 |             TestFile: tst_psList.c                                               |
    13 |            TestPoint: psList{488-testListAdd}                                    |
    14 |             TestType: Positive                                                   |
    15 \----------------------------------------------------------------------------------/
     11/***************************** TESTPOINT ******************************************\
     12*             TestFile: tst_psList.c                                               *
     13*            TestPoint: psList{488-testListAdd}                                    *
     14*             TestType: Positive                                                   *
     15\**********************************************************************************/
    1616
    1717 <DATE> <TIME> <HOST> |I|    testListAdd|psListAdd shall add an element to list
     
    2323---> TESTPOINT PASSED (psList{488-testListAdd} | tst_psList.c)
    2424
    25 /----------------------------- TESTPOINT ------------------------------------------\
    26 |             TestFile: tst_psList.c                                               |
    27 |            TestPoint: psList{489-testListGet}                                    |
    28 |             TestType: Positive                                                   |
    29 \----------------------------------------------------------------------------------/
     25/***************************** TESTPOINT ******************************************\
     26*             TestFile: tst_psList.c                                               *
     27*            TestPoint: psList{489-testListGet}                                    *
     28*             TestType: Positive                                                   *
     29\**********************************************************************************/
    3030
    3131 <DATE> <TIME> <HOST> |I|    testListGet|Following should be an error
     
    3434---> TESTPOINT PASSED (psList{489-testListGet} | tst_psList.c)
    3535
    36 /----------------------------- TESTPOINT ------------------------------------------\
    37 |             TestFile: tst_psList.c                                               |
    38 |            TestPoint: psList{490-testListRemove}                                 |
    39 |             TestType: Positive                                                   |
    40 \----------------------------------------------------------------------------------/
     36/***************************** TESTPOINT ******************************************\
     37*             TestFile: tst_psList.c                                               *
     38*            TestPoint: psList{490-testListRemove}                                 *
     39*             TestType: Positive                                                   *
     40\**********************************************************************************/
    4141
    4242 <DATE> <TIME> <HOST> |I| testListRemove|Following should be an error
     
    5353---> TESTPOINT PASSED (psList{490-testListRemove} | tst_psList.c)
    5454
    55 /----------------------------- TESTPOINT ------------------------------------------\
    56 |             TestFile: tst_psList.c                                               |
    57 |            TestPoint: psList{491-testListConvert}                                |
    58 |             TestType: Positive                                                   |
    59 \----------------------------------------------------------------------------------/
     55/***************************** TESTPOINT ******************************************\
     56*             TestFile: tst_psList.c                                               *
     57*            TestPoint: psList{491-testListConvert}                                *
     58*             TestType: Positive                                                   *
     59\**********************************************************************************/
    6060
    6161
    6262---> TESTPOINT PASSED (psList{491-testListConvert} | tst_psList.c)
    6363
    64 /----------------------------- TESTPOINT ------------------------------------------\
    65 |             TestFile: tst_psList.c                                               |
    66 |            TestPoint: psList{494-testListIterator}                               |
    67 |             TestType: Positive                                                   |
    68 \----------------------------------------------------------------------------------/
     64/***************************** TESTPOINT ******************************************\
     65*             TestFile: tst_psList.c                                               *
     66*            TestPoint: psList{494-testListIterator}                               *
     67*             TestType: Positive                                                   *
     68\**********************************************************************************/
    6969
    7070 <DATE> <TIME> <HOST> |I|testListIterato| psListSetIterator/psListGetNext/psListGetPrev shall move the list cursor to the specified location
     
    7676---> TESTPOINT PASSED (psList{494-testListIterator} | tst_psList.c)
    7777
    78 /----------------------------- TESTPOINT ------------------------------------------\
    79 |             TestFile: tst_psList.c                                               |
    80 |            TestPoint: psList{627-testListFree}                                   |
    81 |             TestType: Positive                                                   |
    82 \----------------------------------------------------------------------------------/
     78/***************************** TESTPOINT ******************************************\
     79*             TestFile: tst_psList.c                                               *
     80*            TestPoint: psList{627-testListFree}                                   *
     81*             TestType: Positive                                                   *
     82\**********************************************************************************/
    8383
    8484
  • trunk/psLib/test/collections/verified/tst_psSort_01.stdout

    r988 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psSort_01.c                                            |
    3 |            TestPoint: psSort{Create float vectors}                               |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psSort_01.c                                            *
     3*            TestPoint: psSort{Create float vectors}                               *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77vec[0] = 7.000000
     
    1515---> TESTPOINT PASSED (psSort{Create float vectors} | tst_psSort_01.c)
    1616
    17 /----------------------------- TESTPOINT ------------------------------------------\
    18 |             TestFile: tst_psSort_01.c                                            |
    19 |            TestPoint: psSort{Sort float vector}                                  |
    20 |             TestType: Positive                                                   |
    21 \----------------------------------------------------------------------------------/
     17/***************************** TESTPOINT ******************************************\
     18*             TestFile: tst_psSort_01.c                                            *
     19*            TestPoint: psSort{Sort float vector}                                  *
     20*             TestType: Positive                                                   *
     21\**********************************************************************************/
    2222
    2323vec[0] = -20.000000
     
    3131---> TESTPOINT PASSED (psSort{Sort float vector} | tst_psSort_01.c)
    3232
    33 /----------------------------- TESTPOINT ------------------------------------------\
    34 |             TestFile: tst_psSort_01.c                                            |
    35 |            TestPoint: psSort{Sort input float vector into itself}                |
    36 |             TestType: Positive                                                   |
    37 \----------------------------------------------------------------------------------/
     33/***************************** TESTPOINT ******************************************\
     34*             TestFile: tst_psSort_01.c                                            *
     35*            TestPoint: psSort{Sort input float vector into itself}                *
     36*             TestType: Positive                                                   *
     37\**********************************************************************************/
    3838
    3939vec[0] = -20.000000
     
    4747---> TESTPOINT PASSED (psSort{Sort input float vector into itself} | tst_psSort_01.c)
    4848
    49 /----------------------------- TESTPOINT ------------------------------------------\
    50 |             TestFile: tst_psSort_01.c                                            |
    51 |            TestPoint: psSort{Free float vectors}                                 |
    52 |             TestType: Positive                                                   |
    53 \----------------------------------------------------------------------------------/
     49/***************************** TESTPOINT ******************************************\
     50*             TestFile: tst_psSort_01.c                                            *
     51*            TestPoint: psSort{Free float vectors}                                 *
     52*             TestType: Positive                                                   *
     53\**********************************************************************************/
    5454
    5555
  • trunk/psLib/test/collections/verified/tst_psSort_02.stdout

    r805 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psSort_02.c                                            |
    3 |            TestPoint: psSort{Create vectors}                                     |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psSort_02.c                                            *
     3*            TestPoint: psSort{Create vectors}                                     *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77arr[0] = 7.000000
     
    1313---> TESTPOINT PASSED (psSort{Create vectors} | tst_psSort_02.c)
    1414
    15 /----------------------------- TESTPOINT ------------------------------------------\
    16 |             TestFile: tst_psSort_02.c                                            |
    17 |            TestPoint: psSort{Create sorted index vector}                         |
    18 |             TestType: Positive                                                   |
    19 \----------------------------------------------------------------------------------/
     15/***************************** TESTPOINT ******************************************\
     16*             TestFile: tst_psSort_02.c                                            *
     17*            TestPoint: psSort{Create sorted index vector}                         *
     18*             TestType: Positive                                                   *
     19\**********************************************************************************/
    2020
    2121arr[0] = 3
     
    2727---> TESTPOINT PASSED (psSort{Create sorted index vector} | tst_psSort_02.c)
    2828
    29 /----------------------------- TESTPOINT ------------------------------------------\
    30 |             TestFile: tst_psSort_02.c                                            |
    31 |            TestPoint: psSort{Free vectors}                                       |
    32 |             TestType: Positive                                                   |
    33 \----------------------------------------------------------------------------------/
     29/***************************** TESTPOINT ******************************************\
     30*             TestFile: tst_psSort_02.c                                            *
     31*            TestPoint: psSort{Free vectors}                                       *
     32*             TestType: Positive                                                   *
     33\**********************************************************************************/
    3434
    3535
  • trunk/psLib/test/collections/verified/tst_psSort_03.stdout

    r805 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psSort_03.c                                            |
    3 |            TestPoint: psSort{Create float vectors of different sizes}            |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psSort_03.c                                            *
     3*            TestPoint: psSort{Create float vectors of different sizes}            *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77arr[0] = 0.000000
     
    1313---> TESTPOINT PASSED (psSort{Create float vectors of different sizes} | tst_psSort_03.c)
    1414
    15 /----------------------------- TESTPOINT ------------------------------------------\
    16 |             TestFile: tst_psSort_03.c                                            |
    17 |            TestPoint: psSort{Sort float vector}                                  |
    18 |             TestType: Negative                                                   |
    19 |    ExpectedErrorText: Input and output vector sizes are not equal                |
    20 |  ExpectedStatusValue: 0                                                          |
    21 \----------------------------------------------------------------------------------/
     15/***************************** TESTPOINT ******************************************\
     16*             TestFile: tst_psSort_03.c                                            *
     17*            TestPoint: psSort{Sort float vector}                                  *
     18*             TestType: Negative                                                   *
     19*    ExpectedErrorText: Input and output vector sizes are not equal                *
     20*  ExpectedStatusValue: 0                                                          *
     21\**********************************************************************************/
    2222
    2323
    2424---> TESTPOINT PASSED (psSort{Sort float vector} | tst_psSort_03.c)
    2525
    26 /----------------------------- TESTPOINT ------------------------------------------\
    27 |             TestFile: tst_psSort_03.c                                            |
    28 |            TestPoint: psSort{Free float vectors}                                 |
    29 |             TestType: Positive                                                   |
    30 \----------------------------------------------------------------------------------/
     26/***************************** TESTPOINT ******************************************\
     27*             TestFile: tst_psSort_03.c                                            *
     28*            TestPoint: psSort{Free float vectors}                                 *
     29*             TestType: Positive                                                   *
     30\**********************************************************************************/
    3131
    3232
  • trunk/psLib/test/collections/verified/tst_psSort_04.stdout

    r988 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psSort_04.c                                            |
    3 |            TestPoint: psSort{Attempt to sort with null input vector}             |
    4 |             TestType: Negative                                                   |
    5 |    ExpectedErrorText: Null input vector                                          |
    6 |  ExpectedStatusValue: 0                                                          |
    7 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psSort_04.c                                            *
     3*            TestPoint: psSort{Attempt to sort with null input vector}             *
     4*             TestType: Negative                                                   *
     5*    ExpectedErrorText: Null input vector                                          *
     6*  ExpectedStatusValue: 0                                                          *
     7\**********************************************************************************/
    88
    99
    1010---> TESTPOINT PASSED (psSort{Attempt to sort with null input vector} | tst_psSort_04.c)
    1111
    12 /----------------------------- TESTPOINT ------------------------------------------\
    13 |             TestFile: tst_psSort_04.c                                            |
    14 |            TestPoint: psSort{Free vectors}                                       |
    15 |             TestType: Positive                                                   |
    16 \----------------------------------------------------------------------------------/
     12/***************************** TESTPOINT ******************************************\
     13*             TestFile: tst_psSort_04.c                                            *
     14*            TestPoint: psSort{Free vectors}                                       *
     15*             TestType: Positive                                                   *
     16\**********************************************************************************/
    1717
    1818
  • trunk/psLib/test/collections/verified/tst_psVector_01.stdout

    r968 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psVector_01.c                                          |
    3 |            TestPoint: psVector{Create S32 vector}                                |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psVector_01.c                                          *
     3*            TestPoint: psVector{Create S32 vector}                                *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77Vector size = 5
     
    1212---> TESTPOINT PASSED (psVector{Create S32 vector} | tst_psVector_01.c)
    1313
    14 /----------------------------- TESTPOINT ------------------------------------------\
    15 |             TestFile: tst_psVector_01.c                                          |
    16 |            TestPoint: psVector{Add data to S32 vector}                           |
    17 |             TestType: Positive                                                   |
    18 \----------------------------------------------------------------------------------/
     14/***************************** TESTPOINT ******************************************\
     15*             TestFile: tst_psVector_01.c                                          *
     16*            TestPoint: psVector{Add data to S32 vector}                           *
     17*             TestType: Positive                                                   *
     18\**********************************************************************************/
    1919
    2020Elem 0 = 0
     
    2828---> TESTPOINT PASSED (psVector{Add data to S32 vector} | tst_psVector_01.c)
    2929
    30 /----------------------------- TESTPOINT ------------------------------------------\
    31 |             TestFile: tst_psVector_01.c                                          |
    32 |            TestPoint: psVector{Reallocate S32 vector bigger}                     |
    33 |             TestType: Positive                                                   |
    34 \----------------------------------------------------------------------------------/
     30/***************************** TESTPOINT ******************************************\
     31*             TestFile: tst_psVector_01.c                                          *
     32*            TestPoint: psVector{Reallocate S32 vector bigger}                     *
     33*             TestType: Positive                                                   *
     34\**********************************************************************************/
    3535
    3636Adding more elements to S32 vector...
     
    4545---> TESTPOINT PASSED (psVector{Reallocate S32 vector bigger} | tst_psVector_01.c)
    4646
    47 /----------------------------- TESTPOINT ------------------------------------------\
    48 |             TestFile: tst_psVector_01.c                                          |
    49 |            TestPoint: psVector{Reallocate S32 vector smaller}                    |
    50 |             TestType: Positive                                                   |
    51 \----------------------------------------------------------------------------------/
     47/***************************** TESTPOINT ******************************************\
     48*             TestFile: tst_psVector_01.c                                          *
     49*            TestPoint: psVector{Reallocate S32 vector smaller}                    *
     50*             TestType: Positive                                                   *
     51\**********************************************************************************/
    5252
    5353Vector size = 3
     
    6060---> TESTPOINT PASSED (psVector{Reallocate integer S32 smaller} | tst_psVector_01.c)
    6161
    62 /----------------------------- TESTPOINT ------------------------------------------\
    63 |             TestFile: tst_psVector_01.c                                          |
    64 |            TestPoint: psVector{Free S32 vector}                                  |
    65 |             TestType: Positive                                                   |
    66 \----------------------------------------------------------------------------------/
     62/***************************** TESTPOINT ******************************************\
     63*             TestFile: tst_psVector_01.c                                          *
     64*            TestPoint: psVector{Free S32 vector}                                  *
     65*             TestType: Positive                                                   *
     66\**********************************************************************************/
    6767
    6868
    6969---> TESTPOINT PASSED (psVector{Free S32 vector} | tst_psVector_01.c)
    7070
    71 /----------------------------- TESTPOINT ------------------------------------------\
    72 |             TestFile: tst_psVector_01.c                                          |
    73 |            TestPoint: psVector{Attempt to create a S32 vector with zero size}    |
    74 |             TestType: Negative                                                   |
    75 |    ExpectedErrorText: Invalid value for nalloc                                   |
    76 |  ExpectedStatusValue: 0                                                          |
    77 \----------------------------------------------------------------------------------/
     71/***************************** TESTPOINT ******************************************\
     72*             TestFile: tst_psVector_01.c                                          *
     73*            TestPoint: psVector{Attempt to create a S32 vector with zero size}    *
     74*             TestType: Negative                                                   *
     75*    ExpectedErrorText: Invalid value for nalloc                                   *
     76*  ExpectedStatusValue: 0                                                          *
     77\**********************************************************************************/
    7878
    7979
    8080---> TESTPOINT PASSED (psVector{Attempt to create a S32 vector with zero size} | tst_psVector_01.c)
    8181
    82 /----------------------------- TESTPOINT ------------------------------------------\
    83 |             TestFile: tst_psVector_01.c                                          |
    84 |            TestPoint: psVector{Attempt to realloc a null S32 vector}             |
    85 |             TestType: Negative                                                   |
    86 |    ExpectedErrorText: Null input vector                                          |
    87 |  ExpectedStatusValue: 0                                                          |
    88 \----------------------------------------------------------------------------------/
     82/***************************** TESTPOINT ******************************************\
     83*             TestFile: tst_psVector_01.c                                          *
     84*            TestPoint: psVector{Attempt to realloc a null S32 vector}             *
     85*             TestType: Negative                                                   *
     86*    ExpectedErrorText: Null input vector                                          *
     87*  ExpectedStatusValue: 0                                                          *
     88\**********************************************************************************/
    8989
    9090
  • trunk/psLib/test/collections/verified/tst_psVector_02.stdout

    r880 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psVector_02.c                                          |
    3 |            TestPoint: psVector{Create void pointer vector}                       |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psVector_02.c                                          *
     3*            TestPoint: psVector{Create void pointer vector}                       *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77Vector size = 5
     
    1010---> TESTPOINT PASSED (psVector{Create void pointer vector} | tst_psVector_02.c)
    1111
    12 /----------------------------- TESTPOINT ------------------------------------------\
    13 |             TestFile: tst_psVector_02.c                                          |
    14 |            TestPoint: psVector{Add data to void pointer vector}                  |
    15 |             TestType: Positive                                                   |
    16 \----------------------------------------------------------------------------------/
     12/***************************** TESTPOINT ******************************************\
     13*             TestFile: tst_psVector_02.c                                          *
     14*            TestPoint: psVector{Add data to void pointer vector}                  *
     15*             TestType: Positive                                                   *
     16\**********************************************************************************/
    1717
    1818ts[0].x = 0 ts[0].y = 0.00
     
    2626---> TESTPOINT PASSED (psVector{Add data to void pointer vector} | tst_psVector_02.c)
    2727
    28 /----------------------------- TESTPOINT ------------------------------------------\
    29 |             TestFile: tst_psVector_02.c                                          |
    30 |            TestPoint: psVector{Reallocate void pointer vector bigger}            |
    31 |             TestType: Positive                                                   |
    32 \----------------------------------------------------------------------------------/
     28/***************************** TESTPOINT ******************************************\
     29*             TestFile: tst_psVector_02.c                                          *
     30*            TestPoint: psVector{Reallocate void pointer vector bigger}            *
     31*             TestType: Positive                                                   *
     32\**********************************************************************************/
    3333
    3434Adding more elements to void pointer vector...
     
    4848---> TESTPOINT PASSED (psVector{Reallocate void pointer vector bigger} | tst_psVector_02.c)
    4949
    50 /----------------------------- TESTPOINT ------------------------------------------\
    51 |             TestFile: tst_psVector_02.c                                          |
    52 |            TestPoint: psVector{Reallocate void pointer vector smaller}           |
    53 |             TestType: Positive                                                   |
    54 \----------------------------------------------------------------------------------/
     50/***************************** TESTPOINT ******************************************\
     51*             TestFile: tst_psVector_02.c                                          *
     52*            TestPoint: psVector{Reallocate void pointer vector smaller}           *
     53*             TestType: Positive                                                   *
     54\**********************************************************************************/
    5555
    5656ts[0].x = 0 ts[0].y = 0.00
     
    6262---> TESTPOINT PASSED (psVector{Reallocate integer void pointer smaller} | tst_psVector_02.c)
    6363
    64 /----------------------------- TESTPOINT ------------------------------------------\
    65 |             TestFile: tst_psVector_02.c                                          |
    66 |            TestPoint: psVector{Free void pointer vector}                         |
    67 |             TestType: Positive                                                   |
    68 \----------------------------------------------------------------------------------/
     64/***************************** TESTPOINT ******************************************\
     65*             TestFile: tst_psVector_02.c                                          *
     66*            TestPoint: psVector{Free void pointer vector}                         *
     67*             TestType: Positive                                                   *
     68\**********************************************************************************/
    6969
    7070
  • trunk/psLib/test/collections/verified/tst_psVector_03.stdout

    r880 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psVector_03.c                                          |
    3 |            TestPoint: psVector{Create void pointer vector}                       |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psVector_03.c                                          *
     3*            TestPoint: psVector{Create void pointer vector}                       *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77Vector size = 5
     
    1010---> TESTPOINT PASSED (psVector{Create void pointer vector} | tst_psVector_03.c)
    1111
    12 /----------------------------- TESTPOINT ------------------------------------------\
    13 |             TestFile: tst_psVector_03.c                                          |
    14 |            TestPoint: psVector{Add data to void pointer vector}                  |
    15 |             TestType: Positive                                                   |
    16 \----------------------------------------------------------------------------------/
     12/***************************** TESTPOINT ******************************************\
     13*             TestFile: tst_psVector_03.c                                          *
     14*            TestPoint: psVector{Add data to void pointer vector}                  *
     15*             TestType: Positive                                                   *
     16\**********************************************************************************/
    1717
    1818ts[0].x = 0 ts[0].y = 0.00
     
    2626---> TESTPOINT PASSED (psVector{Add data to void pointer vector} | tst_psVector_03.c)
    2727
    28 /----------------------------- TESTPOINT ------------------------------------------\
    29 |             TestFile: tst_psVector_03.c                                          |
    30 |            TestPoint: psVector{Reallocate void pointer vector bigger}            |
    31 |             TestType: Positive                                                   |
    32 \----------------------------------------------------------------------------------/
     28/***************************** TESTPOINT ******************************************\
     29*             TestFile: tst_psVector_03.c                                          *
     30*            TestPoint: psVector{Reallocate void pointer vector bigger}            *
     31*             TestType: Positive                                                   *
     32\**********************************************************************************/
    3333
    3434Adding more elements to void pointer vector...
     
    4848---> TESTPOINT PASSED (psVector{Reallocate void pointer vector bigger} | tst_psVector_03.c)
    4949
    50 /----------------------------- TESTPOINT ------------------------------------------\
    51 |             TestFile: tst_psVector_03.c                                          |
    52 |            TestPoint: psVector{Reallocate void pointer vector smaller}           |
    53 |             TestType: Positive                                                   |
    54 \----------------------------------------------------------------------------------/
     50/***************************** TESTPOINT ******************************************\
     51*             TestFile: tst_psVector_03.c                                          *
     52*            TestPoint: psVector{Reallocate void pointer vector smaller}           *
     53*             TestType: Positive                                                   *
     54\**********************************************************************************/
    5555
    5656ts[0].x = 0 ts[0].y = 0.00
     
    6262---> TESTPOINT PASSED (psVector{Reallocate integer void pointer smaller} | tst_psVector_03.c)
    6363
    64 /----------------------------- TESTPOINT ------------------------------------------\
    65 |             TestFile: tst_psVector_03.c                                          |
    66 |            TestPoint: psVector{Free void pointer array with function callback}   |
    67 |             TestType: Positive                                                   |
    68 \----------------------------------------------------------------------------------/
     64/***************************** TESTPOINT ******************************************\
     65*             TestFile: tst_psVector_03.c                                          *
     66*            TestPoint: psVector{Free void pointer array with function callback}   *
     67*             TestType: Positive                                                   *
     68\**********************************************************************************/
    6969
    7070
  • trunk/psLib/test/dataManip/verified/tst_psFunc00.stdout

    r890 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psFunc00.c                                             |
    3 |            TestPoint: psFunctions functions{Allocate/Deallocate the psPolynomial1D structure.} |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psFunc00.c                                             *
     3*            TestPoint: psFunctions functions{Allocate/Deallocate the psPolynomial1D structure.} *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77At (x) = (5.000000): 2070.000000
     
    99---> TESTPOINT PASSED (psStats functions{Allocate/Deallocate the psPolynomial1D structure.} | tst_psFunc00.c)
    1010
    11 /----------------------------- TESTPOINT ------------------------------------------\
    12 |             TestFile: tst_psFunc00.c                                             |
    13 |            TestPoint: psFunctions functions{Allocate/Deallocate the psPolynomial2D structure.} |
    14 |             TestType: Positive                                                   |
    15 \----------------------------------------------------------------------------------/
     11/***************************** TESTPOINT ******************************************\
     12*             TestFile: tst_psFunc00.c                                             *
     13*            TestPoint: psFunctions functions{Allocate/Deallocate the psPolynomial2D structure.} *
     14*             TestType: Positive                                                   *
     15\**********************************************************************************/
    1616
    1717At (x, y) = (5.000000, 5.000000): 322920.000000
     
    1919---> TESTPOINT PASSED (psStats functions{Allocate/Deallocate the psPolynomial2D structure.} | tst_psFunc00.c)
    2020
    21 /----------------------------- TESTPOINT ------------------------------------------\
    22 |             TestFile: tst_psFunc00.c                                             |
    23 |            TestPoint: psFunctions functions{Allocate/Deallocate the psPolynomial3D structure.} |
    24 |             TestType: Positive                                                   |
    25 \----------------------------------------------------------------------------------/
     21/***************************** TESTPOINT ******************************************\
     22*             TestFile: tst_psFunc00.c                                             *
     23*            TestPoint: psFunctions functions{Allocate/Deallocate the psPolynomial3D structure.} *
     24*             TestType: Positive                                                   *
     25\**********************************************************************************/
    2626
    2727At (x, y, z) = (5.000000, 5.000000, 5.000000): 1261325568.000000
     
    2929---> TESTPOINT PASSED (psStats functions{Allocate/Deallocate the psPolynomial3D structure.} | tst_psFunc00.c)
    3030
    31 /----------------------------- TESTPOINT ------------------------------------------\
    32 |             TestFile: tst_psFunc00.c                                             |
    33 |            TestPoint: psFunctions functions{Allocate/Deallocate the psPolynomial4D structure.} |
    34 |             TestType: Positive                                                   |
    35 \----------------------------------------------------------------------------------/
     31/***************************** TESTPOINT ******************************************\
     32*             TestFile: tst_psFunc00.c                                             *
     33*            TestPoint: psFunctions functions{Allocate/Deallocate the psPolynomial4D structure.} *
     34*             TestType: Positive                                                   *
     35\**********************************************************************************/
    3636
    3737At (w, x, y, z) = (5.000000, 5.000000, 5.000000, 5.000000): 123176004616192.000000
     
    3939---> TESTPOINT PASSED (psStats functions{Allocate/Deallocate the psPolynomial4D structure.} | tst_psFunc00.c)
    4040
    41 /----------------------------- TESTPOINT ------------------------------------------\
    42 |             TestFile: tst_psFunc00.c                                             |
    43 |            TestPoint: psFunctions functions{Allocate/Deallocate the psDPolynomial1D structure.} |
    44 |             TestType: Positive                                                   |
    45 \----------------------------------------------------------------------------------/
     41/***************************** TESTPOINT ******************************************\
     42*             TestFile: tst_psFunc00.c                                             *
     43*            TestPoint: psFunctions functions{Allocate/Deallocate the psDPolynomial1D structure.} *
     44*             TestType: Positive                                                   *
     45\**********************************************************************************/
    4646
    4747At (x) = (5.000000): 2070.000000
     
    4949---> TESTPOINT PASSED (psStats functions{Allocate/Deallocate the psDPolynomial1D structure.} | tst_psFunc00.c)
    5050
    51 /----------------------------- TESTPOINT ------------------------------------------\
    52 |             TestFile: tst_psFunc00.c                                             |
    53 |            TestPoint: psFunctions functions{Allocate/Deallocate the psDPolynomial2D structure.} |
    54 |             TestType: Positive                                                   |
    55 \----------------------------------------------------------------------------------/
     51/***************************** TESTPOINT ******************************************\
     52*             TestFile: tst_psFunc00.c                                             *
     53*            TestPoint: psFunctions functions{Allocate/Deallocate the psDPolynomial2D structure.} *
     54*             TestType: Positive                                                   *
     55\**********************************************************************************/
    5656
    5757At (x, y) = (5.000000, 5.000000): 322920.000000
     
    5959---> TESTPOINT PASSED (psStats functions{Allocate/Deallocate the psDPolynomial2D structure.} | tst_psFunc00.c)
    6060
    61 /----------------------------- TESTPOINT ------------------------------------------\
    62 |             TestFile: tst_psFunc00.c                                             |
    63 |            TestPoint: psFunctions functions{Allocate/Deallocate the psDPolynomial3D structure.} |
    64 |             TestType: Positive                                                   |
    65 \----------------------------------------------------------------------------------/
     61/***************************** TESTPOINT ******************************************\
     62*             TestFile: tst_psFunc00.c                                             *
     63*            TestPoint: psFunctions functions{Allocate/Deallocate the psDPolynomial3D structure.} *
     64*             TestType: Positive                                                   *
     65\**********************************************************************************/
    6666
    6767At (x, y, z) = (5.000000, 5.000000, 5.000000): 1261325520.000000
     
    6969---> TESTPOINT PASSED (psStats functions{Allocate/Deallocate the psDPolynomial3D structure.} | tst_psFunc00.c)
    7070
    71 /----------------------------- TESTPOINT ------------------------------------------\
    72 |             TestFile: tst_psFunc00.c                                             |
    73 |            TestPoint: psFunctions functions{Allocate/Deallocate the psDPolynomial4D structure.} |
    74 |             TestType: Positive                                                   |
    75 \----------------------------------------------------------------------------------/
     71/***************************** TESTPOINT ******************************************\
     72*             TestFile: tst_psFunc00.c                                             *
     73*            TestPoint: psFunctions functions{Allocate/Deallocate the psDPolynomial4D structure.} *
     74*             TestType: Positive                                                   *
     75\**********************************************************************************/
    7676
    7777At (w, x, y, z) = (5.000000, 5.000000, 5.000000, 5.000000): 123176004981120.000000
  • trunk/psLib/test/dataManip/verified/tst_psFunc01.stdout

    r890 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psFunc01.c                                             |
    3 |            TestPoint: psFunctions functions{psGaussian()}                        |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psFunc01.c                                             *
     3*            TestPoint: psFunctions functions{psGaussian()}                        *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77normal psGaussian(0.000000) is 0.000000
     
    6868---> TESTPOINT PASSED (psFunctions functions{psGaussian()} | tst_psFunc01.c)
    6969
    70 /----------------------------- TESTPOINT ------------------------------------------\
    71 |             TestFile: tst_psFunc01.c                                             |
    72 |            TestPoint: psFunctions functions{psGaussianDev()}                     |
    73 |             TestType: Positive                                                   |
    74 \----------------------------------------------------------------------------------/
     70/***************************** TESTPOINT ******************************************\
     71*             TestFile: tst_psFunc01.c                                             *
     72*            TestPoint: psFunctions functions{psGaussianDev()}                     *
     73*             TestType: Positive                                                   *
     74\**********************************************************************************/
    7575
    7676Gaussian Deviate [0] is 30.267838
  • trunk/psLib/test/dataManip/verified/tst_psHist00.stdout

    r893 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psHist00.c                                             |
    3 |            TestPoint: psStats functions{Allocate the psHistogram structure.}     |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psHist00.c                                             *
     3*            TestPoint: psStats functions{Allocate the psHistogram structure.}     *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77Bin number 0 bounds: (20.000000 - 30.000000)
     
    99---> TESTPOINT PASSED (psStats functions{Allocate the psHistogram structure.} | tst_psHist00.c)
    1010
    11 /----------------------------- TESTPOINT ------------------------------------------\
    12 |             TestFile: tst_psHist00.c                                             |
    13 |            TestPoint: psStats functions{Allocate the psHistogram structure.}     |
    14 |             TestType: Positive                                                   |
    15 \----------------------------------------------------------------------------------/
     11/***************************** TESTPOINT ******************************************\
     12*             TestFile: tst_psHist00.c                                             *
     13*            TestPoint: psStats functions{Allocate the psHistogram structure.}     *
     14*             TestType: Positive                                                   *
     15\**********************************************************************************/
    1616
    1717Bin number 0 bounds: (20.000000 - 25.000000)
     
    2020---> TESTPOINT PASSED (psStats functions{Allocate the psHistogram structure.} | tst_psHist00.c)
    2121
    22 /----------------------------- TESTPOINT ------------------------------------------\
    23 |             TestFile: tst_psHist00.c                                             |
    24 |            TestPoint: psStats functions{Allocate the psHistogram structure.}     |
    25 |             TestType: Positive                                                   |
    26 \----------------------------------------------------------------------------------/
     22/***************************** TESTPOINT ******************************************\
     23*             TestFile: tst_psHist00.c                                             *
     24*            TestPoint: psStats functions{Allocate the psHistogram structure.}     *
     25*             TestType: Positive                                                   *
     26\**********************************************************************************/
    2727
    2828Bin number 0 bounds: (20.000000 - 21.000000)
     
    3939---> TESTPOINT PASSED (psStats functions{Allocate the psHistogram structure.} | tst_psHist00.c)
    4040
    41 /----------------------------- TESTPOINT ------------------------------------------\
    42 |             TestFile: tst_psHist00.c                                             |
    43 |            TestPoint: psStats functions{Allocate the psHistogram structure.}     |
    44 |             TestType: Positive                                                   |
    45 \----------------------------------------------------------------------------------/
     41/***************************** TESTPOINT ******************************************\
     42*             TestFile: tst_psHist00.c                                             *
     43*            TestPoint: psStats functions{Allocate the psHistogram structure.}     *
     44*             TestType: Positive                                                   *
     45\**********************************************************************************/
    4646
    4747Bin number 0 bounds: (20.000000 - 20.500000)
     
    6868---> TESTPOINT PASSED (psStats functions{Allocate the psHistogram structure.} | tst_psHist00.c)
    6969
    70 /----------------------------- TESTPOINT ------------------------------------------\
    71 |             TestFile: tst_psHist00.c                                             |
    72 |            TestPoint: psStats functions{Allocate the psHistogram structure. (UPPER<LOWER)} |
    73 |             TestType: Positive                                                   |
    74 \----------------------------------------------------------------------------------/
     70/***************************** TESTPOINT ******************************************\
     71*             TestFile: tst_psHist00.c                                             *
     72*            TestPoint: psStats functions{Allocate the psHistogram structure. (UPPER<LOWER)} *
     73*             TestType: Positive                                                   *
     74\**********************************************************************************/
    7575
    7676
    7777---> TESTPOINT PASSED (psStats functions{Allocate the psHistogram structure. (UPPER<LOWER)} | tst_psHist00.c)
    7878
    79 /----------------------------- TESTPOINT ------------------------------------------\
    80 |             TestFile: tst_psHist00.c                                             |
    81 |            TestPoint: psStats functions{Deallocate the psHistogram structure.}   |
    82 |             TestType: Positive                                                   |
    83 \----------------------------------------------------------------------------------/
     79/***************************** TESTPOINT ******************************************\
     80*             TestFile: tst_psHist00.c                                             *
     81*            TestPoint: psStats functions{Deallocate the psHistogram structure.}   *
     82*             TestType: Positive                                                   *
     83\**********************************************************************************/
    8484
    8585
  • trunk/psLib/test/dataManip/verified/tst_psHist01.stdout

    r893 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psHist01.c                                             |
    3 |            TestPoint: psStats functions{Allocate the psHistogram structure.}     |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psHist01.c                                             *
     3*            TestPoint: psStats functions{Allocate the psHistogram structure.}     *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77Bin number 0 bounds: (20.000000 - 30.000000)
     
    99---> TESTPOINT PASSED (psStats functions{Allocate the psHistogram structure.} | tst_psHist01.c)
    1010
    11 /----------------------------- TESTPOINT ------------------------------------------\
    12 |             TestFile: tst_psHist01.c                                             |
    13 |            TestPoint: psStats functions{Allocate the psHistogram structure.}     |
    14 |             TestType: Positive                                                   |
    15 \----------------------------------------------------------------------------------/
     11/***************************** TESTPOINT ******************************************\
     12*             TestFile: tst_psHist01.c                                             *
     13*            TestPoint: psStats functions{Allocate the psHistogram structure.}     *
     14*             TestType: Positive                                                   *
     15\**********************************************************************************/
    1616
    1717Bin number 0 bounds: (20.000000 - 25.000000)
     
    2020---> TESTPOINT PASSED (psStats functions{Allocate the psHistogram structure.} | tst_psHist01.c)
    2121
    22 /----------------------------- TESTPOINT ------------------------------------------\
    23 |             TestFile: tst_psHist01.c                                             |
    24 |            TestPoint: psStats functions{Allocate the psHistogram structure.}     |
    25 |             TestType: Positive                                                   |
    26 \----------------------------------------------------------------------------------/
     22/***************************** TESTPOINT ******************************************\
     23*             TestFile: tst_psHist01.c                                             *
     24*            TestPoint: psStats functions{Allocate the psHistogram structure.}     *
     25*             TestType: Positive                                                   *
     26\**********************************************************************************/
    2727
    2828Bin number 0 bounds: (20.000000 - 21.000000)
     
    3939---> TESTPOINT PASSED (psStats functions{Allocate the psHistogram structure.} | tst_psHist01.c)
    4040
    41 /----------------------------- TESTPOINT ------------------------------------------\
    42 |             TestFile: tst_psHist01.c                                             |
    43 |            TestPoint: psStats functions{Allocate the psHistogram structure.}     |
    44 |             TestType: Positive                                                   |
    45 \----------------------------------------------------------------------------------/
     41/***************************** TESTPOINT ******************************************\
     42*             TestFile: tst_psHist01.c                                             *
     43*            TestPoint: psStats functions{Allocate the psHistogram structure.}     *
     44*             TestType: Positive                                                   *
     45\**********************************************************************************/
    4646
    4747Bin number 0 bounds: (20.000000 - 20.500000)
     
    6868---> TESTPOINT PASSED (psStats functions{Allocate the psHistogram structure.} | tst_psHist01.c)
    6969
    70 /----------------------------- TESTPOINT ------------------------------------------\
    71 |             TestFile: tst_psHist01.c                                             |
    72 |            TestPoint: psStats functions{Deallocate the psHistogram structure.}   |
    73 |             TestType: Positive                                                   |
    74 \----------------------------------------------------------------------------------/
     70/***************************** TESTPOINT ******************************************\
     71*             TestFile: tst_psHist01.c                                             *
     72*            TestPoint: psStats functions{Deallocate the psHistogram structure.}   *
     73*             TestType: Positive                                                   *
     74\**********************************************************************************/
    7575
    7676
  • trunk/psLib/test/dataManip/verified/tst_psHist02.stdout

    r893 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psHist02.c                                             |
    3 |            TestPoint: psStats functions{Allocate and Perform Histogram, no mask} |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psHist02.c                                             *
     3*            TestPoint: psStats functions{Allocate and Perform Histogram, no mask} *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77Bin number 0 bounds: (20.000000 - 30.000000) data (10000)
     
    99---> TESTPOINT PASSED (psStats functions{Allocate and Perform Histogram, no mask} | tst_psHist02.c)
    1010
    11 /----------------------------- TESTPOINT ------------------------------------------\
    12 |             TestFile: tst_psHist02.c                                             |
    13 |            TestPoint: psStats functions{Allocate and Perform Histogram with mask} |
    14 |             TestType: Positive                                                   |
    15 \----------------------------------------------------------------------------------/
     11/***************************** TESTPOINT ******************************************\
     12*             TestFile: tst_psHist02.c                                             *
     13*            TestPoint: psStats functions{Allocate and Perform Histogram with mask} *
     14*             TestType: Positive                                                   *
     15\**********************************************************************************/
    1616
    1717Bin number 0 bounds: (20.000000 - 30.000000) data (5000)
     
    1919---> TESTPOINT PASSED (psStats functions{Allocate and Perform Histogram with mask} | tst_psHist02.c)
    2020
    21 /----------------------------- TESTPOINT ------------------------------------------\
    22 |             TestFile: tst_psHist02.c                                             |
    23 |            TestPoint: psStats functions{Allocate and Perform Histogram, no mask} |
    24 |             TestType: Positive                                                   |
    25 \----------------------------------------------------------------------------------/
     21/***************************** TESTPOINT ******************************************\
     22*             TestFile: tst_psHist02.c                                             *
     23*            TestPoint: psStats functions{Allocate and Perform Histogram, no mask} *
     24*             TestType: Positive                                                   *
     25\**********************************************************************************/
    2626
    2727Bin number 0 bounds: (20.000000 - 25.000000) data (5000)
     
    3030---> TESTPOINT PASSED (psStats functions{Allocate and Perform Histogram, no mask} | tst_psHist02.c)
    3131
    32 /----------------------------- TESTPOINT ------------------------------------------\
    33 |             TestFile: tst_psHist02.c                                             |
    34 |            TestPoint: psStats functions{Allocate and Perform Histogram with mask} |
    35 |             TestType: Positive                                                   |
    36 \----------------------------------------------------------------------------------/
     32/***************************** TESTPOINT ******************************************\
     33*             TestFile: tst_psHist02.c                                             *
     34*            TestPoint: psStats functions{Allocate and Perform Histogram with mask} *
     35*             TestType: Positive                                                   *
     36\**********************************************************************************/
    3737
    3838Bin number 0 bounds: (20.000000 - 25.000000) data (5000)
     
    4141---> TESTPOINT PASSED (psStats functions{Allocate and Perform Histogram with mask} | tst_psHist02.c)
    4242
    43 /----------------------------- TESTPOINT ------------------------------------------\
    44 |             TestFile: tst_psHist02.c                                             |
    45 |            TestPoint: psStats functions{Allocate and Perform Histogram, no mask} |
    46 |             TestType: Positive                                                   |
    47 \----------------------------------------------------------------------------------/
     43/***************************** TESTPOINT ******************************************\
     44*             TestFile: tst_psHist02.c                                             *
     45*            TestPoint: psStats functions{Allocate and Perform Histogram, no mask} *
     46*             TestType: Positive                                                   *
     47\**********************************************************************************/
    4848
    4949Bin number 0 bounds: (20.000000 - 21.000000) data (1000)
     
    6060---> TESTPOINT PASSED (psStats functions{Allocate and Perform Histogram, no mask} | tst_psHist02.c)
    6161
    62 /----------------------------- TESTPOINT ------------------------------------------\
    63 |             TestFile: tst_psHist02.c                                             |
    64 |            TestPoint: psStats functions{Allocate and Perform Histogram with mask} |
    65 |             TestType: Positive                                                   |
    66 \----------------------------------------------------------------------------------/
     62/***************************** TESTPOINT ******************************************\
     63*             TestFile: tst_psHist02.c                                             *
     64*            TestPoint: psStats functions{Allocate and Perform Histogram with mask} *
     65*             TestType: Positive                                                   *
     66\**********************************************************************************/
    6767
    6868Bin number 0 bounds: (20.000000 - 21.000000) data (1000)
     
    7979---> TESTPOINT PASSED (psStats functions{Allocate and Perform Histogram with mask} | tst_psHist02.c)
    8080
    81 /----------------------------- TESTPOINT ------------------------------------------\
    82 |             TestFile: tst_psHist02.c                                             |
    83 |            TestPoint: psStats functions{Allocate and Perform Histogram, no mask} |
    84 |             TestType: Positive                                                   |
    85 \----------------------------------------------------------------------------------/
     81/***************************** TESTPOINT ******************************************\
     82*             TestFile: tst_psHist02.c                                             *
     83*            TestPoint: psStats functions{Allocate and Perform Histogram, no mask} *
     84*             TestType: Positive                                                   *
     85\**********************************************************************************/
    8686
    8787Bin number 0 bounds: (20.000000 - 20.500000) data (500)
     
    108108---> TESTPOINT PASSED (psStats functions{Allocate and Perform Histogram, no mask} | tst_psHist02.c)
    109109
    110 /----------------------------- TESTPOINT ------------------------------------------\
    111 |             TestFile: tst_psHist02.c                                             |
    112 |            TestPoint: psStats functions{Allocate and Perform Histogram with mask} |
    113 |             TestType: Positive                                                   |
    114 \----------------------------------------------------------------------------------/
     110/***************************** TESTPOINT ******************************************\
     111*             TestFile: tst_psHist02.c                                             *
     112*            TestPoint: psStats functions{Allocate and Perform Histogram with mask} *
     113*             TestType: Positive                                                   *
     114\**********************************************************************************/
    115115
    116116Bin number 0 bounds: (20.000000 - 20.500000) data (500)
     
    137137---> TESTPOINT PASSED (psStats functions{Allocate and Perform Histogram with mask} | tst_psHist02.c)
    138138
    139 /----------------------------- TESTPOINT ------------------------------------------\
    140 |             TestFile: tst_psHist02.c                                             |
    141 |            TestPoint: psStats functions{Calling psHistogramVector() with various NULL inputs.} |
    142 |             TestType: Positive                                                   |
    143 \----------------------------------------------------------------------------------/
     139/***************************** TESTPOINT ******************************************\
     140*             TestFile: tst_psHist02.c                                             *
     141*            TestPoint: psStats functions{Calling psHistogramVector() with various NULL inputs.} *
     142*             TestType: Positive                                                   *
     143\**********************************************************************************/
    144144
    145145
    146146---> TESTPOINT PASSED (psStats functions{Calling psHistogramVector() with various NULL inputs.} | tst_psHist02.c)
    147147
    148 /----------------------------- TESTPOINT ------------------------------------------\
    149 |             TestFile: tst_psHist02.c                                             |
    150 |            TestPoint: psStats functions{Deallocate the psHistogram structure.}   |
    151 |             TestType: Positive                                                   |
    152 \----------------------------------------------------------------------------------/
     148/***************************** TESTPOINT ******************************************\
     149*             TestFile: tst_psHist02.c                                             *
     150*            TestPoint: psStats functions{Deallocate the psHistogram structure.}   *
     151*             TestType: Positive                                                   *
     152\**********************************************************************************/
    153153
    154154
  • trunk/psLib/test/dataManip/verified/tst_psMatrix01.stdout

    r804 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psMatrix01.c                                           |
    3 |            TestPoint: psMatrix{Create input and output images}                   |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psMatrix01.c                                           *
     3*            TestPoint: psMatrix{Create input and output images}                   *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    777.000000 8.000000 9.000000
     
    1111---> TESTPOINT PASSED (psMatrix{Create input and output images} | tst_psMatrix01.c)
    1212
    13 /----------------------------- TESTPOINT ------------------------------------------\
    14 |             TestFile: tst_psMatrix01.c                                           |
    15 |            TestPoint: psMatrix{Transpose input image into output image}          |
    16 |             TestType: Positive                                                   |
    17 \----------------------------------------------------------------------------------/
     13/***************************** TESTPOINT ******************************************\
     14*             TestFile: tst_psMatrix01.c                                           *
     15*            TestPoint: psMatrix{Transpose input image into output image}          *
     16*             TestType: Positive                                                   *
     17\**********************************************************************************/
    1818
    19193.000000 6.000000 9.000000
     
    2323---> TESTPOINT PASSED (psMatrix{Transpose input image into output image} | tst_psMatrix01.c)
    2424
    25 /----------------------------- TESTPOINT ------------------------------------------\
    26 |             TestFile: tst_psMatrix01.c                                           |
    27 |            TestPoint: psMatrix{ranspose input image into auto allocated NULL output image} |
    28 |             TestType: Positive                                                   |
    29 \----------------------------------------------------------------------------------/
     25/***************************** TESTPOINT ******************************************\
     26*             TestFile: tst_psMatrix01.c                                           *
     27*            TestPoint: psMatrix{ranspose input image into auto allocated NULL output image} *
     28*             TestType: Positive                                                   *
     29\**********************************************************************************/
    3030
    31313.000000 6.000000 9.000000
     
    3535---> TESTPOINT PASSED (psMatrix{ranspose input image into auto allocated NULL output image} | tst_psMatrix01.c)
    3636
    37 /----------------------------- TESTPOINT ------------------------------------------\
    38 |             TestFile: tst_psMatrix01.c                                           |
    39 |            TestPoint: psMatrix{Free images and check for leaks}                  |
    40 |             TestType: Positive                                                   |
    41 \----------------------------------------------------------------------------------/
     37/***************************** TESTPOINT ******************************************\
     38*             TestFile: tst_psMatrix01.c                                           *
     39*            TestPoint: psMatrix{Free images and check for leaks}                  *
     40*             TestType: Positive                                                   *
     41\**********************************************************************************/
    4242
    4343
  • trunk/psLib/test/dataManip/verified/tst_psMatrix02.stdout

    r804 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psMatrix02.c                                           |
    3 |            TestPoint: psMatrix{Input pointer same as output pointer}             |
    4 |             TestType: Negative                                                   |
    5 |    ExpectedErrorText: Invalid operation: Pointer to inImage is same as outImage. |
    6 |  ExpectedStatusValue: 0                                                          |
    7 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psMatrix02.c                                           *
     3*            TestPoint: psMatrix{Input pointer same as output pointer}             *
     4*             TestType: Negative                                                   *
     5*    ExpectedErrorText: Invalid operation: Pointer to inImage is same as outImage. *
     6*  ExpectedStatusValue: 0                                                          *
     7\**********************************************************************************/
    88
    99
    1010---> TESTPOINT PASSED (psMatrix{Input pointer same as output pointer} | tst_psMatrix02.c)
    1111
    12 /----------------------------- TESTPOINT ------------------------------------------\
    13 |             TestFile: tst_psMatrix02.c                                           |
    14 |            TestPoint: psMatrix{Null input psImage}                               |
    15 |             TestType: Negative                                                   |
    16 |    ExpectedErrorText: Invalid operation: inImage or its data is NULL.            |
    17 |  ExpectedStatusValue: 0                                                          |
    18 \----------------------------------------------------------------------------------/
     12/***************************** TESTPOINT ******************************************\
     13*             TestFile: tst_psMatrix02.c                                           *
     14*            TestPoint: psMatrix{Null input psImage}                               *
     15*             TestType: Negative                                                   *
     16*    ExpectedErrorText: Invalid operation: inImage or its data is NULL.            *
     17*  ExpectedStatusValue: 0                                                          *
     18\**********************************************************************************/
    1919
    2020
    2121---> TESTPOINT PASSED (psMatrix{Null input psImage} | tst_psMatrix02.c)
    2222
    23 /----------------------------- TESTPOINT ------------------------------------------\
    24 |             TestFile: tst_psMatrix02.c                                           |
    25 |            TestPoint: psMatrix{Incorrect type for input pointer}                 |
    26 |             TestType: Negative                                                   |
    27 |    ExpectedErrorText: |Invalid operation: inImage not PS_TYPE_F64.               |
    28 |  ExpectedStatusValue: 0                                                          |
    29 \----------------------------------------------------------------------------------/
     23/***************************** TESTPOINT ******************************************\
     24*             TestFile: tst_psMatrix02.c                                           *
     25*            TestPoint: psMatrix{Incorrect type for input pointer}                 *
     26*             TestType: Negative                                                   *
     27*    ExpectedErrorText: |Invalid operation: inImage not PS_TYPE_F64.               *
     28*  ExpectedStatusValue: 0                                                          *
     29\**********************************************************************************/
    3030
    3131
    3232---> TESTPOINT PASSED (psMatrix{Incorrect type for input pointer} | tst_psMatrix02.c)
    3333
    34 /----------------------------- TESTPOINT ------------------------------------------\
    35 |             TestFile: tst_psMatrix02.c                                           |
    36 |            TestPoint: psMatrix{Matrix not square for input pointer}              |
    37 |             TestType: Negative                                                   |
    38 |    ExpectedErrorText: Invalid operation: inImage not square array.               |
    39 |  ExpectedStatusValue: 0                                                          |
    40 \----------------------------------------------------------------------------------/
     34/***************************** TESTPOINT ******************************************\
     35*             TestFile: tst_psMatrix02.c                                           *
     36*            TestPoint: psMatrix{Matrix not square for input pointer}              *
     37*             TestType: Negative                                                   *
     38*    ExpectedErrorText: Invalid operation: inImage not square array.               *
     39*  ExpectedStatusValue: 0                                                          *
     40\**********************************************************************************/
    4141
    4242
    4343---> TESTPOINT PASSED (psMatrix{Matrix not square for input pointer} | tst_psMatrix02.c)
    4444
    45 /----------------------------- TESTPOINT ------------------------------------------\
    46 |             TestFile: tst_psMatrix02.c                                           |
    47 |            TestPoint: psMatrix{Incorrect type for output pointer}                |
    48 |             TestType: Negative                                                   |
    49 |    ExpectedErrorText: Invalid operation: outImage not PS_TYPE_F64.               |
    50 |  ExpectedStatusValue: 0                                                          |
    51 \----------------------------------------------------------------------------------/
     45/***************************** TESTPOINT ******************************************\
     46*             TestFile: tst_psMatrix02.c                                           *
     47*            TestPoint: psMatrix{Incorrect type for output pointer}                *
     48*             TestType: Negative                                                   *
     49*    ExpectedErrorText: Invalid operation: outImage not PS_TYPE_F64.               *
     50*  ExpectedStatusValue: 0                                                          *
     51\**********************************************************************************/
    5252
    5353
    5454---> TESTPOINT PASSED (psMatrix{Incorrect type for output pointer} | tst_psMatrix02.c)
    5555
    56 /----------------------------- TESTPOINT ------------------------------------------\
    57 |             TestFile: tst_psMatrix02.c                                           |
    58 |            TestPoint: psMatrix{Matrix not square for output pointer}             |
    59 |             TestType: Negative                                                   |
    60 |    ExpectedErrorText: Invalid operation: outImage not square array.              |
    61 |  ExpectedStatusValue: 0                                                          |
    62 \----------------------------------------------------------------------------------/
     56/***************************** TESTPOINT ******************************************\
     57*             TestFile: tst_psMatrix02.c                                           *
     58*            TestPoint: psMatrix{Matrix not square for output pointer}             *
     59*             TestType: Negative                                                   *
     60*    ExpectedErrorText: Invalid operation: outImage not square array.              *
     61*  ExpectedStatusValue: 0                                                          *
     62\**********************************************************************************/
    6363
    6464
  • trunk/psLib/test/dataManip/verified/tst_psMatrix03.stdout

    r898 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psMatrix03.c                                           |
    3 |            TestPoint: psMatrix{Create input and output images and vectors}       |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psMatrix03.c                                           *
     3*            TestPoint: psMatrix{Create input and output images and vectors}       *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    773.000000 1.000000 -2.000000
     
    1515---> TESTPOINT PASSED (psMatrix{Create input and output images and vectors} | tst_psMatrix03.c)
    1616
    17 /----------------------------- TESTPOINT ------------------------------------------\
    18 |             TestFile: tst_psMatrix03.c                                           |
    19 |            TestPoint: psMatrix{Calculate LU matrix}                              |
    20 |             TestType: Positive                                                   |
    21 \----------------------------------------------------------------------------------/
     17/***************************** TESTPOINT ******************************************\
     18*             TestFile: tst_psMatrix03.c                                           *
     19*            TestPoint: psMatrix{Calculate LU matrix}                              *
     20*             TestType: Positive                                                   *
     21\**********************************************************************************/
    2222
    23230.500000 -0.545455 -0.545455
     
    2727---> TESTPOINT PASSED (psMatrix{Calculate LU matrix} | tst_psMatrix03.c)
    2828
    29 /----------------------------- TESTPOINT ------------------------------------------\
    30 |             TestFile: tst_psMatrix03.c                                           |
    31 |            TestPoint: psMatrix{Determine solution to matrix equation}            |
    32 |             TestType: Positive                                                   |
    33 \----------------------------------------------------------------------------------/
     29/***************************** TESTPOINT ******************************************\
     30*             TestFile: tst_psMatrix03.c                                           *
     31*            TestPoint: psMatrix{Determine solution to matrix equation}            *
     32*             TestType: Positive                                                   *
     33\**********************************************************************************/
    3434
    35354.000000
     
    4040---> TESTPOINT PASSED (psMatrix{Determine solution to matrix equation} | tst_psMatrix03.c)
    4141
    42 /----------------------------- TESTPOINT ------------------------------------------\
    43 |             TestFile: tst_psMatrix03.c                                           |
    44 |            TestPoint: psMatrix{Free input and output images and vectors}         |
    45 |             TestType: Positive                                                   |
    46 \----------------------------------------------------------------------------------/
     42/***************************** TESTPOINT ******************************************\
     43*             TestFile: tst_psMatrix03.c                                           *
     44*            TestPoint: psMatrix{Free input and output images and vectors}         *
     45*             TestType: Positive                                                   *
     46\**********************************************************************************/
    4747
    4848
    4949---> TESTPOINT PASSED (psMatrix{Free input and output images and vectors} | tst_psMatrix03.c)
    5050
    51 /----------------------------- TESTPOINT ------------------------------------------\
    52 |             TestFile: tst_psMatrix03.c                                           |
    53 |            TestPoint: psMatrix{Attempt to use null image input argument}         |
    54 |             TestType: Negative                                                   |
    55 |    ExpectedErrorText: Invalid operation: inImage or its data is NULL.            |
    56 |  ExpectedStatusValue: 0                                                          |
    57 \----------------------------------------------------------------------------------/
     51/***************************** TESTPOINT ******************************************\
     52*             TestFile: tst_psMatrix03.c                                           *
     53*            TestPoint: psMatrix{Attempt to use null image input argument}         *
     54*             TestType: Negative                                                   *
     55*    ExpectedErrorText: Invalid operation: inImage or its data is NULL.            *
     56*  ExpectedStatusValue: 0                                                          *
     57\**********************************************************************************/
    5858
    5959
    6060---> TESTPOINT PASSED (psMatrix{Attempt to use null image input argument} | tst_psMatrix03.c)
    6161
    62 /----------------------------- TESTPOINT ------------------------------------------\
    63 |             TestFile: tst_psMatrix03.c                                           |
    64 |            TestPoint: psMatrix{Attempt to use null input vector argument}        |
    65 |             TestType: Negative                                                   |
    66 |    ExpectedErrorText: Invalid operation: inVector or its data is NULL.           |
    67 |  ExpectedStatusValue: 0                                                          |
    68 \----------------------------------------------------------------------------------/
     62/***************************** TESTPOINT ******************************************\
     63*             TestFile: tst_psMatrix03.c                                           *
     64*            TestPoint: psMatrix{Attempt to use null input vector argument}        *
     65*             TestType: Negative                                                   *
     66*    ExpectedErrorText: Invalid operation: inVector or its data is NULL.           *
     67*  ExpectedStatusValue: 0                                                          *
     68\**********************************************************************************/
    6969
    7070
    7171---> TESTPOINT PASSED (psMatrix{Attempt to use null input vector argument} | tst_psMatrix03.c)
    7272
    73 /----------------------------- TESTPOINT ------------------------------------------\
    74 |             TestFile: tst_psMatrix03.c                                           |
    75 |            TestPoint: psMatrix{Attempt to use null LU image argument}            |
    76 |             TestType: Negative                                                   |
    77 |    ExpectedErrorText: Invalid operation: inImage or its data is NULL.            |
    78 |  ExpectedStatusValue: 0                                                          |
    79 \----------------------------------------------------------------------------------/
     73/***************************** TESTPOINT ******************************************\
     74*             TestFile: tst_psMatrix03.c                                           *
     75*            TestPoint: psMatrix{Attempt to use null LU image argument}            *
     76*             TestType: Negative                                                   *
     77*    ExpectedErrorText: Invalid operation: inImage or its data is NULL.            *
     78*  ExpectedStatusValue: 0                                                          *
     79\**********************************************************************************/
    8080
    8181
  • trunk/psLib/test/dataManip/verified/tst_psMatrix04.stdout

    r898 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psMatrix04.c                                           |
    3 |            TestPoint: psMatrix{Create input and output images}                   |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psMatrix04.c                                           *
     3*            TestPoint: psMatrix{Create input and output images}                   *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    773.000000 5.000000 7.000000
     
    1111---> TESTPOINT PASSED (psMatrix{Create input and output images} | tst_psMatrix04.c)
    1212
    13 /----------------------------- TESTPOINT ------------------------------------------\
    14 |             TestFile: tst_psMatrix04.c                                           |
    15 |            TestPoint: psMatrix{Invert matrix and calculate determinant}          |
    16 |             TestType: Positive                                                   |
    17 \----------------------------------------------------------------------------------/
     13/***************************** TESTPOINT ******************************************\
     14*             TestFile: tst_psMatrix04.c                                           *
     15*            TestPoint: psMatrix{Invert matrix and calculate determinant}          *
     16*             TestType: Positive                                                   *
     17\**********************************************************************************/
    1818
    1919-1.000000 0.666667 0.666667
     
    2525---> TESTPOINT PASSED (psMatrix{Invert matrix and calculate determinant} | tst_psMatrix04.c)
    2626
    27 /----------------------------- TESTPOINT ------------------------------------------\
    28 |             TestFile: tst_psMatrix04.c                                           |
    29 |            TestPoint: psMatrix{Calculate determinant only}                       |
    30 |             TestType: Positive                                                   |
    31 \----------------------------------------------------------------------------------/
     27/***************************** TESTPOINT ******************************************\
     28*             TestFile: tst_psMatrix04.c                                           *
     29*            TestPoint: psMatrix{Calculate determinant only}                       *
     30*             TestType: Positive                                                   *
     31\**********************************************************************************/
    3232
    3333det = 3.000000
     
    3535---> TESTPOINT PASSED (psMatrix{Calculate determinant only} | tst_psMatrix04.c)
    3636
    37 /----------------------------- TESTPOINT ------------------------------------------\
    38 |             TestFile: tst_psMatrix04.c                                           |
    39 |            TestPoint: psMatrix{Free input and output images}                     |
    40 |             TestType: Positive                                                   |
    41 \----------------------------------------------------------------------------------/
     37/***************************** TESTPOINT ******************************************\
     38*             TestFile: tst_psMatrix04.c                                           *
     39*            TestPoint: psMatrix{Free input and output images}                     *
     40*             TestType: Positive                                                   *
     41\**********************************************************************************/
    4242
    4343
    4444---> TESTPOINT PASSED (psMatrix{Free input and output images} | tst_psMatrix04.c)
    4545
    46 /----------------------------- TESTPOINT ------------------------------------------\
    47 |             TestFile: tst_psMatrix04.c                                           |
    48 |            TestPoint: psMatrix{Attempt to use null input image argument}         |
    49 |             TestType: Negative                                                   |
    50 |    ExpectedErrorText: Invalid operation: inImage or its data is NULL.            |
    51 |  ExpectedStatusValue: 0                                                          |
    52 \----------------------------------------------------------------------------------/
     46/***************************** TESTPOINT ******************************************\
     47*             TestFile: tst_psMatrix04.c                                           *
     48*            TestPoint: psMatrix{Attempt to use null input image argument}         *
     49*             TestType: Negative                                                   *
     50*    ExpectedErrorText: Invalid operation: inImage or its data is NULL.            *
     51*  ExpectedStatusValue: 0                                                          *
     52\**********************************************************************************/
    5353
    5454
    5555---> TESTPOINT PASSED (psMatrix{Attempt to use null input image argument} | tst_psMatrix04.c)
    5656
    57 /----------------------------- TESTPOINT ------------------------------------------\
    58 |             TestFile: tst_psMatrix04.c                                           |
    59 |            TestPoint: psMatrix{Attempt to use null input float argument}         |
    60 |             TestType: Negative                                                   |
    61 |    ExpectedErrorText: Invalid operation: determinant argument is NULL.           |
    62 |  ExpectedStatusValue: 0                                                          |
    63 \----------------------------------------------------------------------------------/
     57/***************************** TESTPOINT ******************************************\
     58*             TestFile: tst_psMatrix04.c                                           *
     59*            TestPoint: psMatrix{Attempt to use null input float argument}         *
     60*             TestType: Negative                                                   *
     61*    ExpectedErrorText: Invalid operation: determinant argument is NULL.           *
     62*  ExpectedStatusValue: 0                                                          *
     63\**********************************************************************************/
    6464
    6565
  • trunk/psLib/test/dataManip/verified/tst_psMatrix05.stdout

    r804 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psMatrix05.c                                           |
    3 |            TestPoint: psMatrix{Create input and output images}                   |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psMatrix05.c                                           *
     3*            TestPoint: psMatrix{Create input and output images}                   *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    772.000000 3.000000
     
    1313---> TESTPOINT PASSED (psMatrix{Create input and output images} | tst_psMatrix05.c)
    1414
    15 /----------------------------- TESTPOINT ------------------------------------------\
    16 |             TestFile: tst_psMatrix05.c                                           |
    17 |            TestPoint: psMatrix{Multiply images}                                  |
    18 |             TestType: Positive                                                   |
    19 \----------------------------------------------------------------------------------/
     15/***************************** TESTPOINT ******************************************\
     16*             TestFile: tst_psMatrix05.c                                           *
     17*            TestPoint: psMatrix{Multiply images}                                  *
     18*             TestType: Positive                                                   *
     19\**********************************************************************************/
    2020
    21218.000000 20.000000
     
    2424---> TESTPOINT PASSED (psMatrix{Multiply images} | tst_psMatrix05.c)
    2525
    26 /----------------------------- TESTPOINT ------------------------------------------\
    27 |             TestFile: tst_psMatrix05.c                                           |
    28 |            TestPoint: psMatrix{Free input and output images}                     |
    29 |             TestType: Positive                                                   |
    30 \----------------------------------------------------------------------------------/
     26/***************************** TESTPOINT ******************************************\
     27*             TestFile: tst_psMatrix05.c                                           *
     28*            TestPoint: psMatrix{Free input and output images}                     *
     29*             TestType: Positive                                                   *
     30\**********************************************************************************/
    3131
    3232
  • trunk/psLib/test/dataManip/verified/tst_psMatrix06.stdout

    r804 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psMatrix06.c                                           |
    3 |            TestPoint: psMatrix{Create input and output images}                   |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psMatrix06.c                                           *
     3*            TestPoint: psMatrix{Create input and output images}                   *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    771.000000 0.500000 0.333333 0.250000
     
    1212---> TESTPOINT PASSED (psMatrix{Create input and output images} | tst_psMatrix06.c)
    1313
    14 /----------------------------- TESTPOINT ------------------------------------------\
    15 |             TestFile: tst_psMatrix06.c                                           |
    16 |            TestPoint: psMatrix{Calculate Eigenvectors}                           |
    17 |             TestType: Positive                                                   |
    18 \----------------------------------------------------------------------------------/
     14/***************************** TESTPOINT ******************************************\
     15*             TestFile: tst_psMatrix06.c                                           *
     16*            TestPoint: psMatrix{Calculate Eigenvectors}                           *
     17*             TestType: Positive                                                   *
     18\**********************************************************************************/
    1919
    20200.792608 0.582076 -0.179186 -0.029193
     
    2525---> TESTPOINT PASSED (psMatrix{Calculate Eigenvectors} | tst_psMatrix06.c)
    2626
    27 /----------------------------- TESTPOINT ------------------------------------------\
    28 |             TestFile: tst_psMatrix06.c                                           |
    29 |            TestPoint: psMatrix{Free input and output images}                     |
    30 |             TestType: Positive                                                   |
    31 \----------------------------------------------------------------------------------/
     27/***************************** TESTPOINT ******************************************\
     28*             TestFile: tst_psMatrix06.c                                           *
     29*            TestPoint: psMatrix{Free input and output images}                     *
     30*             TestType: Positive                                                   *
     31\**********************************************************************************/
    3232
    3333
  • trunk/psLib/test/dataManip/verified/tst_psMatrix07.stdout

    r908 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psMatrix07.c                                           |
    3 |            TestPoint: psMatrix{Create input and output images and vectors}       |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psMatrix07.c                                           *
     3*            TestPoint: psMatrix{Create input and output images and vectors}       *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    770.000000
     
    1717---> TESTPOINT PASSED (psMatrix{Create input and output images and vectors} | tst_psMatrix07.c)
    1818
    19 /----------------------------- TESTPOINT ------------------------------------------\
    20 |             TestFile: tst_psMatrix07.c                                           |
    21 |            TestPoint: psMatrix{Convert matrix to PS_DIMEN_VECTOR vector}         |
    22 |             TestType: Positive                                                   |
    23 \----------------------------------------------------------------------------------/
     19/***************************** TESTPOINT ******************************************\
     20*             TestFile: tst_psMatrix07.c                                           *
     21*            TestPoint: psMatrix{Convert matrix to PS_DIMEN_VECTOR vector}         *
     22*             TestType: Positive                                                   *
     23\**********************************************************************************/
    2424
    25250.000000
     
    2929---> TESTPOINT PASSED (psMatrix{Convert matrix to PS_DIMEN_VECTOR vector} | tst_psMatrix07.c)
    3030
    31 /----------------------------- TESTPOINT ------------------------------------------\
    32 |             TestFile: tst_psMatrix07.c                                           |
    33 |            TestPoint: psMatrix{Attempt to use null image input argument}         |
    34 |             TestType: Negative                                                   |
    35 |    ExpectedErrorText: Invalid operation: inImage or its data is NULL.            |
    36 |  ExpectedStatusValue: 0                                                          |
    37 \----------------------------------------------------------------------------------/
     31/***************************** TESTPOINT ******************************************\
     32*             TestFile: tst_psMatrix07.c                                           *
     33*            TestPoint: psMatrix{Attempt to use null image input argument}         *
     34*             TestType: Negative                                                   *
     35*    ExpectedErrorText: Invalid operation: inImage or its data is NULL.            *
     36*  ExpectedStatusValue: 0                                                          *
     37\**********************************************************************************/
    3838
    3939
    4040---> TESTPOINT PASSED (psMatrix{Attempt to use null image input argument} | tst_psMatrix07.c)
    4141
    42 /----------------------------- TESTPOINT ------------------------------------------\
    43 |             TestFile: tst_psMatrix07.c                                           |
    44 |            TestPoint: psMatrix{Convert matrix to PS_DIMEN_TRANSV vector}         |
    45 |             TestType: Positive                                                   |
    46 \----------------------------------------------------------------------------------/
     42/***************************** TESTPOINT ******************************************\
     43*             TestFile: tst_psMatrix07.c                                           *
     44*            TestPoint: psMatrix{Convert matrix to PS_DIMEN_TRANSV vector}         *
     45*             TestType: Positive                                                   *
     46\**********************************************************************************/
    4747
    48480.000000
     
    5252---> TESTPOINT PASSED (psMatrix{Convert matrix to PS_DIMEN_TRANSV vector} | tst_psMatrix07.c)
    5353
    54 /----------------------------- TESTPOINT ------------------------------------------\
    55 |             TestFile: tst_psMatrix07.c                                           |
    56 |            TestPoint: psMatrix{Improper image size}                              |
    57 |             TestType: Negative                                                   |
    58 |    ExpectedErrorText: Image does not have dim with 1 col or 1 row: (2 x 2).      |
    59 |  ExpectedStatusValue: 0                                                          |
    60 \----------------------------------------------------------------------------------/
     54/***************************** TESTPOINT ******************************************\
     55*             TestFile: tst_psMatrix07.c                                           *
     56*            TestPoint: psMatrix{Improper image size}                              *
     57*             TestType: Negative                                                   *
     58*    ExpectedErrorText: Image does not have dim with 1 col or 1 row: (2 x 2).      *
     59*  ExpectedStatusValue: 0                                                          *
     60\**********************************************************************************/
    6161
    6262
    6363---> TESTPOINT PASSED (psMatrix{Improper image size} | tst_psMatrix07.c)
    6464
    65 /----------------------------- TESTPOINT ------------------------------------------\
    66 |             TestFile: tst_psMatrix07.c                                           |
    67 |            TestPoint: psMatrix{Convert PS_DIMEN_VECTOR vector to matrix}         |
    68 |             TestType: Positive                                                   |
    69 \----------------------------------------------------------------------------------/
     65/***************************** TESTPOINT ******************************************\
     66*             TestFile: tst_psMatrix07.c                                           *
     67*            TestPoint: psMatrix{Convert PS_DIMEN_VECTOR vector to matrix}         *
     68*             TestType: Positive                                                   *
     69\**********************************************************************************/
    7070
    71710.000000
     
    7575---> TESTPOINT PASSED (psMatrix{Convert PS_DIMEN_VECTOR vector to matrix} | tst_psMatrix07.c)
    7676
    77 /----------------------------- TESTPOINT ------------------------------------------\
    78 |             TestFile: tst_psMatrix07.c                                           |
    79 |            TestPoint: psMatrix{Attempt to use null input vector argument}        |
    80 |             TestType: Negative                                                   |
    81 |    ExpectedErrorText: Invalid operation: inVector or its data is NULL.           |
    82 |  ExpectedStatusValue: 0                                                          |
    83 \----------------------------------------------------------------------------------/
     77/***************************** TESTPOINT ******************************************\
     78*             TestFile: tst_psMatrix07.c                                           *
     79*            TestPoint: psMatrix{Attempt to use null input vector argument}        *
     80*             TestType: Negative                                                   *
     81*    ExpectedErrorText: Invalid operation: inVector or its data is NULL.           *
     82*  ExpectedStatusValue: 0                                                          *
     83\**********************************************************************************/
    8484
    8585
    8686---> TESTPOINT PASSED (psMatrix{Attempt to use null input vector argument} | tst_psMatrix07.c)
    8787
    88 /----------------------------- TESTPOINT ------------------------------------------\
    89 |             TestFile: tst_psMatrix07.c                                           |
    90 |            TestPoint: psMatrix{Convert PS_DIMEN_TRANSV vector to matrix}         |
    91 |             TestType: Positive                                                   |
    92 \----------------------------------------------------------------------------------/
     88/***************************** TESTPOINT ******************************************\
     89*             TestFile: tst_psMatrix07.c                                           *
     90*            TestPoint: psMatrix{Convert PS_DIMEN_TRANSV vector to matrix}         *
     91*             TestType: Positive                                                   *
     92\**********************************************************************************/
    9393
    94940.000000 1.000000 2.000000
     
    9696---> TESTPOINT PASSED (psMatrix{Convert PS_DIMEN_TRANSV vector to matrix} | tst_psMatrix07.c)
    9797
    98 /----------------------------- TESTPOINT ------------------------------------------\
    99 |             TestFile: tst_psMatrix07.c                                           |
    100 |            TestPoint: psMatrix{Free input and output images and vectors}         |
    101 |             TestType: Positive                                                   |
    102 \----------------------------------------------------------------------------------/
     98/***************************** TESTPOINT ******************************************\
     99*             TestFile: tst_psMatrix07.c                                           *
     100*            TestPoint: psMatrix{Free input and output images and vectors}         *
     101*             TestType: Positive                                                   *
     102\**********************************************************************************/
    103103
    104104
  • trunk/psLib/test/dataManip/verified/tst_psStats00.stdout

    r936 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psStats00.c                                            |
    3 |            TestPoint: psStats functions{PS_STAT_SAMPLE_MEAN: no vector mask}     |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psStats00.c                                            *
     3*            TestPoint: psStats functions{PS_STAT_SAMPLE_MEAN: no vector mask}     *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77Called psVectorStats() on a vector with no elements masked.
     
    1010---> TESTPOINT PASSED (psVector functions{PS_STAT_SAMPLE_MEAN: no vector mask} | tst_psStats00.c)
    1111
    12 /----------------------------- TESTPOINT ------------------------------------------\
    13 |             TestFile: tst_psStats00.c                                            |
    14 |            TestPoint: psStats functions{PS_STAT_SAMPLE_MEAN: with vector mask=1} |
    15 |             TestType: Positive                                                   |
    16 \----------------------------------------------------------------------------------/
     12/***************************** TESTPOINT ******************************************\
     13*             TestFile: tst_psStats00.c                                            *
     14*            TestPoint: psStats functions{PS_STAT_SAMPLE_MEAN: with vector mask=1} *
     15*             TestType: Positive                                                   *
     16\**********************************************************************************/
    1717
    1818Called psVectorStats() on a vector with last N/2 elements masked.
     
    2121---> TESTPOINT PASSED (psVector functions{PS_STAT_SAMPLE_MEAN: with vector mask=1} | tst_psStats00.c)
    2222
    23 /----------------------------- TESTPOINT ------------------------------------------\
    24 |             TestFile: tst_psStats00.c                                            |
    25 |            TestPoint: psStats functions{PS_STAT_SAMPLE_MEAN: with vector mask=2} |
    26 |             TestType: Positive                                                   |
    27 \----------------------------------------------------------------------------------/
     23/***************************** TESTPOINT ******************************************\
     24*             TestFile: tst_psStats00.c                                            *
     25*            TestPoint: psStats functions{PS_STAT_SAMPLE_MEAN: with vector mask=2} *
     26*             TestType: Positive                                                   *
     27\**********************************************************************************/
    2828
    2929Called psVectorStats() on a vector with last N/2 elements masked.
     
    3232---> TESTPOINT PASSED (psVector functions{PS_STAT_SAMPLE_MEAN: with vector mask=2} | tst_psStats00.c)
    3333
    34 /----------------------------- TESTPOINT ------------------------------------------\
    35 |             TestFile: tst_psStats00.c                                            |
    36 |            TestPoint: psStats functions{PS_STAT_SAMPLE_MEAN: with vector mask=3} |
    37 |             TestType: Positive                                                   |
    38 \----------------------------------------------------------------------------------/
     34/***************************** TESTPOINT ******************************************\
     35*             TestFile: tst_psStats00.c                                            *
     36*            TestPoint: psStats functions{PS_STAT_SAMPLE_MEAN: with vector mask=3} *
     37*             TestType: Positive                                                   *
     38\**********************************************************************************/
    3939
    4040Called psVectorStats() on a vector with last N/2 elements masked.
     
    4343---> TESTPOINT PASSED (psVector functions{PS_STAT_SAMPLE_MEAN: with vector mask=3} | tst_psStats00.c)
    4444
    45 /----------------------------- TESTPOINT ------------------------------------------\
    46 |             TestFile: tst_psStats00.c                                            |
    47 |            TestPoint: psStats functions{PS_STAT_SAMPLE_MEAN: NULL inputs}        |
    48 |             TestType: Positive                                                   |
    49 \----------------------------------------------------------------------------------/
     45/***************************** TESTPOINT ******************************************\
     46*             TestFile: tst_psStats00.c                                            *
     47*            TestPoint: psStats functions{PS_STAT_SAMPLE_MEAN: NULL inputs}        *
     48*             TestType: Positive                                                   *
     49\**********************************************************************************/
    5050
    5151
    5252---> TESTPOINT PASSED (psVector functions{PS_STAT_SAMPLE_MEAN: NULL inputs} | tst_psStats00.c)
    5353
    54 /----------------------------- TESTPOINT ------------------------------------------\
    55 |             TestFile: tst_psStats00.c                                            |
    56 |            TestPoint: psStats functions{psStats(): deallocating memory}          |
    57 |             TestType: Positive                                                   |
    58 \----------------------------------------------------------------------------------/
     54/***************************** TESTPOINT ******************************************\
     55*             TestFile: tst_psStats00.c                                            *
     56*            TestPoint: psStats functions{psStats(): deallocating memory}          *
     57*             TestType: Positive                                                   *
     58\**********************************************************************************/
    5959
    6060
  • trunk/psLib/test/dataManip/verified/tst_psStats01.stdout

    r936 r1034  
    44Masking element 8
    55Masking element 9
    6 /----------------------------- TESTPOINT ------------------------------------------\
    7 |             TestFile: tst_psStats01.c                                            |
    8 |            TestPoint: psStats functions{PS_STAT_MAX: no vector mask}             |
    9 |             TestType: Positive                                                   |
    10 \----------------------------------------------------------------------------------/
     6/***************************** TESTPOINT ******************************************\
     7*             TestFile: tst_psStats01.c                                            *
     8*            TestPoint: psStats functions{PS_STAT_MAX: no vector mask}             *
     9*             TestType: Positive                                                   *
     10\**********************************************************************************/
    1111
    1212Called psVectorStats() on a vector with no elements masked.
     
    1515---> TESTPOINT PASSED (psVector functions{PS_STAT_MAX: no vector mask} | tst_psStats01.c)
    1616
    17 /----------------------------- TESTPOINT ------------------------------------------\
    18 |             TestFile: tst_psStats01.c                                            |
    19 |            TestPoint: psStats functions{PS_STAT_MAX: with vector mask}           |
    20 |             TestType: Positive                                                   |
    21 \----------------------------------------------------------------------------------/
     17/***************************** TESTPOINT ******************************************\
     18*             TestFile: tst_psStats01.c                                            *
     19*            TestPoint: psStats functions{PS_STAT_MAX: with vector mask}           *
     20*             TestType: Positive                                                   *
     21\**********************************************************************************/
    2222
    2323Called psVectorStats() on a vector with last N/2 elements masked.
     
    2626---> TESTPOINT PASSED (psVector functions{PS_STAT_MAX: with vector mask} | tst_psStats01.c)
    2727
    28 /----------------------------- TESTPOINT ------------------------------------------\
    29 |             TestFile: tst_psStats01.c                                            |
    30 |            TestPoint: psStats functions{psStats(): deallocating memory}          |
    31 |             TestType: Positive                                                   |
    32 \----------------------------------------------------------------------------------/
     28/***************************** TESTPOINT ******************************************\
     29*             TestFile: tst_psStats01.c                                            *
     30*            TestPoint: psStats functions{psStats(): deallocating memory}          *
     31*             TestType: Positive                                                   *
     32\**********************************************************************************/
    3333
    3434
  • trunk/psLib/test/dataManip/verified/tst_psStats02.stdout

    r936 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psStats02.c                                            |
    3 |            TestPoint: psStats functions{PS_STAT_MIN: no vector mask}             |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psStats02.c                                            *
     3*            TestPoint: psStats functions{PS_STAT_MIN: no vector mask}             *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77Called psVectorStats() on a vector with no elements masked.
     
    1010---> TESTPOINT PASSED (psVector functions{PS_STAT_MIN: no vector mask} | tst_psStats02.c)
    1111
    12 /----------------------------- TESTPOINT ------------------------------------------\
    13 |             TestFile: tst_psStats02.c                                            |
    14 |            TestPoint: psStats functions{PS_STAT_MIN: with vector mask}           |
    15 |             TestType: Positive                                                   |
    16 \----------------------------------------------------------------------------------/
     12/***************************** TESTPOINT ******************************************\
     13*             TestFile: tst_psStats02.c                                            *
     14*            TestPoint: psStats functions{PS_STAT_MIN: with vector mask}           *
     15*             TestType: Positive                                                   *
     16\**********************************************************************************/
    1717
    1818Called psVectorStats() on a vector with last N/2 elements masked.
     
    2121---> TESTPOINT PASSED (psVector functions{PS_STAT_MIN: with vector mask} | tst_psStats02.c)
    2222
    23 /----------------------------- TESTPOINT ------------------------------------------\
    24 |             TestFile: tst_psStats02.c                                            |
    25 |            TestPoint: psStats functions{psStats(): deallocating memory}          |
    26 |             TestType: Positive                                                   |
    27 \----------------------------------------------------------------------------------/
     23/***************************** TESTPOINT ******************************************\
     24*             TestFile: tst_psStats02.c                                            *
     25*            TestPoint: psStats functions{psStats(): deallocating memory}          *
     26*             TestType: Positive                                                   *
     27\**********************************************************************************/
    2828
    2929
  • trunk/psLib/test/dataManip/verified/tst_psStats03.stdout

    r936 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psStats03.c                                            |
    3 |            TestPoint: psStats functions{PS_STAT_SAMPLE_MEDIAN: no vector mask}   |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psStats03.c                                            *
     3*            TestPoint: psStats functions{PS_STAT_SAMPLE_MEDIAN: no vector mask}   *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77Called psVectorStats() on a vector with no elements masked.
     
    1010---> TESTPOINT PASSED (psStats functions{PS_STAT_SAMPLE_MEDIAN: no vector mask} | tst_psStats03.c)
    1111
    12 /----------------------------- TESTPOINT ------------------------------------------\
    13 |             TestFile: tst_psStats03.c                                            |
    14 |            TestPoint: psStats functions{PS_STAT_SAMPLE_MEDIAN: with vector mask} |
    15 |             TestType: Positive                                                   |
    16 \----------------------------------------------------------------------------------/
     12/***************************** TESTPOINT ******************************************\
     13*             TestFile: tst_psStats03.c                                            *
     14*            TestPoint: psStats functions{PS_STAT_SAMPLE_MEDIAN: with vector mask} *
     15*             TestType: Positive                                                   *
     16\**********************************************************************************/
    1717
    1818Called psVectorStats() on a vector with last N/2 elements masked.
     
    2121---> TESTPOINT PASSED (psStats functions{PS_STAT_SAMPLE_MEDIAN: with vector mask} | tst_psStats03.c)
    2222
    23 /----------------------------- TESTPOINT ------------------------------------------\
    24 |             TestFile: tst_psStats03.c                                            |
    25 |            TestPoint: psStats functions{psStats(): deallocating memory}          |
    26 |             TestType: Positive                                                   |
    27 \----------------------------------------------------------------------------------/
     23/***************************** TESTPOINT ******************************************\
     24*             TestFile: tst_psStats03.c                                            *
     25*            TestPoint: psStats functions{psStats(): deallocating memory}          *
     26*             TestType: Positive                                                   *
     27\**********************************************************************************/
    2828
    2929
  • trunk/psLib/test/dataManip/verified/tst_psStats05.stdout

    r936 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psStats05.c                                            |
    3 |            TestPoint: psStats functions{Allocate the psStats structure.}         |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psStats05.c                                            *
     3*            TestPoint: psStats functions{Allocate the psStats structure.}         *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77
    88---> TESTPOINT PASSED (psStats functions{Allocate the psStats structure.} | tst_psStats05.c)
    99
    10 /----------------------------- TESTPOINT ------------------------------------------\
    11 |             TestFile: tst_psStats05.c                                            |
    12 |            TestPoint: psStats functions{Deallocate the psStats structure.}       |
    13 |             TestType: Positive                                                   |
    14 \----------------------------------------------------------------------------------/
     10/***************************** TESTPOINT ******************************************\
     11*             TestFile: tst_psStats05.c                                            *
     12*            TestPoint: psStats functions{Deallocate the psStats structure.}       *
     13*             TestType: Positive                                                   *
     14\**********************************************************************************/
    1515
    1616
    1717---> TESTPOINT PASSED (psStats functions{Deallocate the psStats structure.} | tst_psStats05.c)
    1818
    19 /----------------------------- TESTPOINT ------------------------------------------\
    20 |             TestFile: tst_psStats05.c                                            |
    21 |            TestPoint: psStats functions{Deallocate NULL psStats structure.}      |
    22 |             TestType: Positive                                                   |
    23 \----------------------------------------------------------------------------------/
     19/***************************** TESTPOINT ******************************************\
     20*             TestFile: tst_psStats05.c                                            *
     21*            TestPoint: psStats functions{Deallocate NULL psStats structure.}      *
     22*             TestType: Positive                                                   *
     23\**********************************************************************************/
    2424
    2525
  • trunk/psLib/test/dataManip/verified/tst_psStats06.stdout

    r936 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psStats06.c                                            |
    3 |            TestPoint: psStats functions{PS_STAT_SAMPLE_STDEV: no vector mask}    |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psStats06.c                                            *
     3*            TestPoint: psStats functions{PS_STAT_SAMPLE_STDEV: no vector mask}    *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77Called psVectorStats() on a vector with no elements masked.
     
    1010---> TESTPOINT PASSED (psVector functions{PS_STAT_SAMPLE_STDEV: no vector mask} | tst_psStats06.c)
    1111
    12 /----------------------------- TESTPOINT ------------------------------------------\
    13 |             TestFile: tst_psStats06.c                                            |
    14 |            TestPoint: psStats functions{PS_STAT_SAMPLE_STDEV: with vector mask}  |
    15 |             TestType: Positive                                                   |
    16 \----------------------------------------------------------------------------------/
     12/***************************** TESTPOINT ******************************************\
     13*             TestFile: tst_psStats06.c                                            *
     14*            TestPoint: psStats functions{PS_STAT_SAMPLE_STDEV: with vector mask}  *
     15*             TestType: Positive                                                   *
     16\**********************************************************************************/
    1717
    1818Called psVectorStats() on a vector with last N/2 elements masked.
     
    2121---> TESTPOINT PASSED (psVector functions{PS_STAT_SAMPLE_STDEV: with vector mask} | tst_psStats06.c)
    2222
    23 /----------------------------- TESTPOINT ------------------------------------------\
    24 |             TestFile: tst_psStats06.c                                            |
    25 |            TestPoint: psStats functions{psStats(): deallocating memory}          |
    26 |             TestType: Positive                                                   |
    27 \----------------------------------------------------------------------------------/
     23/***************************** TESTPOINT ******************************************\
     24*             TestFile: tst_psStats06.c                                            *
     25*            TestPoint: psStats functions{psStats(): deallocating memory}          *
     26*             TestType: Positive                                                   *
     27\**********************************************************************************/
    2828
    2929
  • trunk/psLib/test/dataManip/verified/tst_psStats07.stdout

    r1026 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psStats07.c                                            |
    3 |            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust mean: no vector mask} |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psStats07.c                                            *
     3*            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust mean: no vector mask} *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77Calling psVectorStats() on a vector with no elements masked.
     
    1111---> TESTPOINT PASSED (psVector functions{PS_STAT_ROBUST_STATS: robust mean: no vector mask} | tst_psStats07.c)
    1212
    13 /----------------------------- TESTPOINT ------------------------------------------\
    14 |             TestFile: tst_psStats07.c                                            |
    15 |            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust Median: no vector mask} |
    16 |             TestType: Positive                                                   |
    17 \----------------------------------------------------------------------------------/
     13/***************************** TESTPOINT ******************************************\
     14*             TestFile: tst_psStats07.c                                            *
     15*            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust Median: no vector mask} *
     16*             TestType: Positive                                                   *
     17\**********************************************************************************/
    1818
    1919The expected Median was 0.000000; the calculated Median was 0.000000
     
    2121---> TESTPOINT PASSED (psVector functions{PS_STAT_ROBUST_STATS: robust Median: no vector mask} | tst_psStats07.c)
    2222
    23 /----------------------------- TESTPOINT ------------------------------------------\
    24 |             TestFile: tst_psStats07.c                                            |
    25 |            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust Mode: no vector mask} |
    26 |             TestType: Positive                                                   |
    27 \----------------------------------------------------------------------------------/
     23/***************************** TESTPOINT ******************************************\
     24*             TestFile: tst_psStats07.c                                            *
     25*            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust Mode: no vector mask} *
     26*             TestType: Positive                                                   *
     27\**********************************************************************************/
    2828
    2929The expected Mode was -1.000000; the calculated Mode was -1.000000
     
    3131---> TESTPOINT PASSED (psVector functions{PS_STAT_ROBUST_STATS: robust Mode: no vector mask} | tst_psStats07.c)
    3232
    33 /----------------------------- TESTPOINT ------------------------------------------\
    34 |             TestFile: tst_psStats07.c                                            |
    35 |            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust Stdev: no vector mask} |
    36 |             TestType: Positive                                                   |
    37 \----------------------------------------------------------------------------------/
     33/***************************** TESTPOINT ******************************************\
     34*             TestFile: tst_psStats07.c                                            *
     35*            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust Stdev: no vector mask} *
     36*             TestType: Positive                                                   *
     37\**********************************************************************************/
    3838
    3939The expected Stdev was 0.000000; the calculated Stdev was 0.000000
     
    4141---> TESTPOINT PASSED (psVector functions{PS_STAT_ROBUST_STATS: robust Stdev: no vector mask} | tst_psStats07.c)
    4242
    43 /----------------------------- TESTPOINT ------------------------------------------\
    44 |             TestFile: tst_psStats07.c                                            |
    45 |            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: lower quartile: no vector mask} |
    46 |             TestType: Positive                                                   |
    47 \----------------------------------------------------------------------------------/
     43/***************************** TESTPOINT ******************************************\
     44*             TestFile: tst_psStats07.c                                            *
     45*            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: lower quartile: no vector mask} *
     46*             TestType: Positive                                                   *
     47\**********************************************************************************/
    4848
    4949The expected LQ was 0.000000; the calculated LQ was 0.000000
     
    5151---> TESTPOINT PASSED (psVector functions{PS_STAT_ROBUST_STATS: lower quartile: no vector mask} | tst_psStats07.c)
    5252
    53 /----------------------------- TESTPOINT ------------------------------------------\
    54 |             TestFile: tst_psStats07.c                                            |
    55 |            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: upper quartile: no vector mask} |
    56 |             TestType: Positive                                                   |
    57 \----------------------------------------------------------------------------------/
     53/***************************** TESTPOINT ******************************************\
     54*             TestFile: tst_psStats07.c                                            *
     55*            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: upper quartile: no vector mask} *
     56*             TestType: Positive                                                   *
     57\**********************************************************************************/
    5858
    5959The expected UQ was 0.000000; the calculated UQ was 0.000000
     
    6161---> TESTPOINT PASSED (psVector functions{PS_STAT_ROBUST_STATS: lower quartile: no vector mask} | tst_psStats07.c)
    6262
    63 /----------------------------- TESTPOINT ------------------------------------------\
    64 |             TestFile: tst_psStats07.c                                            |
    65 |            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust N50: no vector mask} |
    66 |             TestType: Positive                                                   |
    67 \----------------------------------------------------------------------------------/
     63/***************************** TESTPOINT ******************************************\
     64*             TestFile: tst_psStats07.c                                            *
     65*            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust N50: no vector mask} *
     66*             TestType: Positive                                                   *
     67\**********************************************************************************/
    6868
    6969The expected N50 was 0.000000; the calculated N50 was 0.000000
     
    7171---> TESTPOINT PASSED (psVector functions{PS_STAT_ROBUST_STATS: robust N50: no vector mask} | tst_psStats07.c)
    7272
    73 /----------------------------- TESTPOINT ------------------------------------------\
    74 |             TestFile: tst_psStats07.c                                            |
    75 |            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust Nfit: no vector mask} |
    76 |             TestType: Positive                                                   |
    77 \----------------------------------------------------------------------------------/
     73/***************************** TESTPOINT ******************************************\
     74*             TestFile: tst_psStats07.c                                            *
     75*            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust Nfit: no vector mask} *
     76*             TestType: Positive                                                   *
     77\**********************************************************************************/
    7878
    7979The expected Nfit was 0.000000; the calculated Nfit was 0.000000
     
    8181---> TESTPOINT PASSED (psVector functions{PS_STAT_ROBUST_STATS: robust Nfit: no vector mask} | tst_psStats07.c)
    8282
    83 /----------------------------- TESTPOINT ------------------------------------------\
    84 |             TestFile: tst_psStats07.c                                            |
    85 |            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust mean: with vector mask} |
    86 |             TestType: Positive                                                   |
    87 \----------------------------------------------------------------------------------/
     83/***************************** TESTPOINT ******************************************\
     84*             TestFile: tst_psStats07.c                                            *
     85*            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust mean: with vector mask} *
     86*             TestType: Positive                                                   *
     87\**********************************************************************************/
    8888
    8989Calling psVectorStats() on a vector with elements masked.
     
    9393---> TESTPOINT PASSED (psVector functions{PS_STAT_ROBUST_STATS: robust mean: with vector mask} | tst_psStats07.c)
    9494
    95 /----------------------------- TESTPOINT ------------------------------------------\
    96 |             TestFile: tst_psStats07.c                                            |
    97 |            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust Median: with vector mask} |
    98 |             TestType: Positive                                                   |
    99 \----------------------------------------------------------------------------------/
     95/***************************** TESTPOINT ******************************************\
     96*             TestFile: tst_psStats07.c                                            *
     97*            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust Median: with vector mask} *
     98*             TestType: Positive                                                   *
     99\**********************************************************************************/
    100100
    101101The expected Median was 0.000000; the calculated Median was 0.000000
     
    103103---> TESTPOINT PASSED (psVector functions{PS_STAT_ROBUST_STATS: robust Median: with vector mask} | tst_psStats07.c)
    104104
    105 /----------------------------- TESTPOINT ------------------------------------------\
    106 |             TestFile: tst_psStats07.c                                            |
    107 |            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust Mode: with vector mask} |
    108 |             TestType: Positive                                                   |
    109 \----------------------------------------------------------------------------------/
     105/***************************** TESTPOINT ******************************************\
     106*             TestFile: tst_psStats07.c                                            *
     107*            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust Mode: with vector mask} *
     108*             TestType: Positive                                                   *
     109\**********************************************************************************/
    110110
    111111The expected Mode was 40.000000; the calculated Mode was 40.000000
     
    113113---> TESTPOINT PASSED (psVector functions{PS_STAT_ROBUST_STATS: robust Mode: with vector mask} | tst_psStats07.c)
    114114
    115 /----------------------------- TESTPOINT ------------------------------------------\
    116 |             TestFile: tst_psStats07.c                                            |
    117 |            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust Stdev: with vector mask} |
    118 |             TestType: Positive                                                   |
    119 \----------------------------------------------------------------------------------/
     115/***************************** TESTPOINT ******************************************\
     116*             TestFile: tst_psStats07.c                                            *
     117*            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust Stdev: with vector mask} *
     118*             TestType: Positive                                                   *
     119\**********************************************************************************/
    120120
    121121The expected Stdev was 0.000000; the calculated Stdev was 0.000000
     
    123123---> TESTPOINT PASSED (psVector functions{PS_STAT_ROBUST_STATS: robust Stdev: with vector mask} | tst_psStats07.c)
    124124
    125 /----------------------------- TESTPOINT ------------------------------------------\
    126 |             TestFile: tst_psStats07.c                                            |
    127 |            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: lower quartile: with vector mask} |
    128 |             TestType: Positive                                                   |
    129 \----------------------------------------------------------------------------------/
     125/***************************** TESTPOINT ******************************************\
     126*             TestFile: tst_psStats07.c                                            *
     127*            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: lower quartile: with vector mask} *
     128*             TestType: Positive                                                   *
     129\**********************************************************************************/
    130130
    131131The expected LQ was 0.000000; the calculated LQ was 0.000000
     
    133133---> TESTPOINT PASSED (psVector functions{PS_STAT_ROBUST_STATS: lower quartile: with vector mask} | tst_psStats07.c)
    134134
    135 /----------------------------- TESTPOINT ------------------------------------------\
    136 |             TestFile: tst_psStats07.c                                            |
    137 |            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: upper quartile: with vector mask} |
    138 |             TestType: Positive                                                   |
    139 \----------------------------------------------------------------------------------/
     135/***************************** TESTPOINT ******************************************\
     136*             TestFile: tst_psStats07.c                                            *
     137*            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: upper quartile: with vector mask} *
     138*             TestType: Positive                                                   *
     139\**********************************************************************************/
    140140
    141141The expected UQ was 0.000000; the calculated UQ was 0.000000
     
    143143---> TESTPOINT PASSED (psVector functions{PS_STAT_ROBUST_STATS: lower quartile: with vector mask} | tst_psStats07.c)
    144144
    145 /----------------------------- TESTPOINT ------------------------------------------\
    146 |             TestFile: tst_psStats07.c                                            |
    147 |            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust N50: with vector mask} |
    148 |             TestType: Positive                                                   |
    149 \----------------------------------------------------------------------------------/
     145/***************************** TESTPOINT ******************************************\
     146*             TestFile: tst_psStats07.c                                            *
     147*            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust N50: with vector mask} *
     148*             TestType: Positive                                                   *
     149\**********************************************************************************/
    150150
    151151The expected N50 was 0.000000; the calculated N50 was 0.000000
     
    153153---> TESTPOINT PASSED (psVector functions{PS_STAT_ROBUST_STATS: robust N50: with vector mask} | tst_psStats07.c)
    154154
    155 /----------------------------- TESTPOINT ------------------------------------------\
    156 |             TestFile: tst_psStats07.c                                            |
    157 |            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust Nfit: with vector mask} |
    158 |             TestType: Positive                                                   |
    159 \----------------------------------------------------------------------------------/
     155/***************************** TESTPOINT ******************************************\
     156*             TestFile: tst_psStats07.c                                            *
     157*            TestPoint: psStats functions{PS_STAT_ROBUST_STATS: robust Nfit: with vector mask} *
     158*             TestType: Positive                                                   *
     159\**********************************************************************************/
    160160
    161161The expected Nfit was 0.000000; the calculated Nfit was 0.000000
     
    163163---> TESTPOINT PASSED (psVector functions{PS_STAT_ROBUST_STATS: robust Nfit: with vector mask} | tst_psStats07.c)
    164164
    165 /----------------------------- TESTPOINT ------------------------------------------\
    166 |             TestFile: tst_psStats07.c                                            |
    167 |            TestPoint: psStats functions{psStats(): deallocating memory}          |
    168 |             TestType: Positive                                                   |
    169 \----------------------------------------------------------------------------------/
     165/***************************** TESTPOINT ******************************************\
     166*             TestFile: tst_psStats07.c                                            *
     167*            TestPoint: psStats functions{psStats(): deallocating memory}          *
     168*             TestType: Positive                                                   *
     169\**********************************************************************************/
    170170
    171171
  • trunk/psLib/test/dataManip/verified/tst_psStats08.stdout

    r936 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psStats08.c                                            |
    3 |            TestPoint: psStats functions{PS_STAT_SAMPLE_LQ: no vector mask}       |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psStats08.c                                            *
     3*            TestPoint: psStats functions{PS_STAT_SAMPLE_LQ: no vector mask}       *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77Called psVectorStats() on a vector with no elements masked.
     
    1010---> TESTPOINT PASSED (psVector functions{PS_STAT_SAMPLE_LQ: no vector mask} | tst_psStats08.c)
    1111
    12 /----------------------------- TESTPOINT ------------------------------------------\
    13 |             TestFile: tst_psStats08.c                                            |
    14 |            TestPoint: psStats functions{PS_STAT_SAMPLE_UQ: no vector mask}       |
    15 |             TestType: Positive                                                   |
    16 \----------------------------------------------------------------------------------/
     12/***************************** TESTPOINT ******************************************\
     13*             TestFile: tst_psStats08.c                                            *
     14*            TestPoint: psStats functions{PS_STAT_SAMPLE_UQ: no vector mask}       *
     15*             TestType: Positive                                                   *
     16\**********************************************************************************/
    1717
    1818Called psVectorStats() on a vector with no elements masked.
     
    2121---> TESTPOINT PASSED (psVector functions{PS_STAT_SAMPLE_UQ: no vector mask} | tst_psStats08.c)
    2222
    23 /----------------------------- TESTPOINT ------------------------------------------\
    24 |             TestFile: tst_psStats08.c                                            |
    25 |            TestPoint: psStats functions{PS_STAT_SAMPLE_LQ: with vector mask}     |
    26 |             TestType: Positive                                                   |
    27 \----------------------------------------------------------------------------------/
     23/***************************** TESTPOINT ******************************************\
     24*             TestFile: tst_psStats08.c                                            *
     25*            TestPoint: psStats functions{PS_STAT_SAMPLE_LQ: with vector mask}     *
     26*             TestType: Positive                                                   *
     27\**********************************************************************************/
    2828
    2929Called psVectorStats() on a vector with elements masked.
     
    3232---> TESTPOINT PASSED (psVector functions{PS_STAT_SAMPLE_LQ: with vector mask} | tst_psStats08.c)
    3333
    34 /----------------------------- TESTPOINT ------------------------------------------\
    35 |             TestFile: tst_psStats08.c                                            |
    36 |            TestPoint: psStats functions{PS_STAT_SAMPLE_UQ: with vector mask}     |
    37 |             TestType: Positive                                                   |
    38 \----------------------------------------------------------------------------------/
     34/***************************** TESTPOINT ******************************************\
     35*             TestFile: tst_psStats08.c                                            *
     36*            TestPoint: psStats functions{PS_STAT_SAMPLE_UQ: with vector mask}     *
     37*             TestType: Positive                                                   *
     38\**********************************************************************************/
    3939
    4040Called psVectorStats() on a vector with elements masked.
     
    4343---> TESTPOINT PASSED (psVector functions{PS_STAT_SAMPLE_UQ: with vector mask} | tst_psStats08.c)
    4444
    45 /----------------------------- TESTPOINT ------------------------------------------\
    46 |             TestFile: tst_psStats08.c                                            |
    47 |            TestPoint: psStats functions{psStats(): deallocating memory}          |
    48 |             TestType: Positive                                                   |
    49 \----------------------------------------------------------------------------------/
     45/***************************** TESTPOINT ******************************************\
     46*             TestFile: tst_psStats08.c                                            *
     47*            TestPoint: psStats functions{psStats(): deallocating memory}          *
     48*             TestType: Positive                                                   *
     49\**********************************************************************************/
    5050
    5151
  • trunk/psLib/test/dataManip/verified/tst_psStats09.stdout

    r890 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psStats09.c                                            |
    3 |            TestPoint: psStats functions{PS_STAT_CLIPPED_MEAN: no vector mask}    |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psStats09.c                                            *
     3*            TestPoint: psStats functions{PS_STAT_CLIPPED_MEAN: no vector mask}    *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77Called psVectorStats() on a vector with no elements masked.
     
    1010---> TESTPOINT PASSED (psVector functions{PS_STAT_CLIPPED_MEAN/STDEV: no vector mask} | tst_psStats09.c)
    1111
    12 /----------------------------- TESTPOINT ------------------------------------------\
    13 |             TestFile: tst_psStats09.c                                            |
    14 |            TestPoint: psStats functions{PS_STAT_CLIPPED_STDEV: no vector mask}   |
    15 |             TestType: Positive                                                   |
    16 \----------------------------------------------------------------------------------/
     12/***************************** TESTPOINT ******************************************\
     13*             TestFile: tst_psStats09.c                                            *
     14*            TestPoint: psStats functions{PS_STAT_CLIPPED_STDEV: no vector mask}   *
     15*             TestType: Positive                                                   *
     16\**********************************************************************************/
    1717
    1818Called psVectorStats() on a vector with no elements masked.
     
    2121---> TESTPOINT PASSED (psVector functions{PS_STAT_CLIPPED_MEAN/STDEV: no vector mask} | tst_psStats09.c)
    2222
    23 /----------------------------- TESTPOINT ------------------------------------------\
    24 |             TestFile: tst_psStats09.c                                            |
    25 |            TestPoint: psStats functions{PS_STAT_CLIPPED_MEAN: vector mask}       |
    26 |             TestType: Positive                                                   |
    27 \----------------------------------------------------------------------------------/
     23/***************************** TESTPOINT ******************************************\
     24*             TestFile: tst_psStats09.c                                            *
     25*            TestPoint: psStats functions{PS_STAT_CLIPPED_MEAN: vector mask}       *
     26*             TestType: Positive                                                   *
     27\**********************************************************************************/
    2828
    2929Called psVectorStats() on a vector with elements masked.
     
    3232---> TESTPOINT PASSED (psVector functions{PS_STAT_CLIPPED_MEAN/STDEV: vector mask} | tst_psStats09.c)
    3333
    34 /----------------------------- TESTPOINT ------------------------------------------\
    35 |             TestFile: tst_psStats09.c                                            |
    36 |            TestPoint: psStats functions{PS_STAT_CLIPPED_STDEV: vector mask}      |
    37 |             TestType: Positive                                                   |
    38 \----------------------------------------------------------------------------------/
     34/***************************** TESTPOINT ******************************************\
     35*             TestFile: tst_psStats09.c                                            *
     36*            TestPoint: psStats functions{PS_STAT_CLIPPED_STDEV: vector mask}      *
     37*             TestType: Positive                                                   *
     38\**********************************************************************************/
    3939
    4040Called psVectorStats() on a vector with elements masked.
     
    4343---> TESTPOINT PASSED (psVector functions{PS_STAT_CLIPPED_MEAN/STDEV: vector mask} | tst_psStats09.c)
    4444
    45 /----------------------------- TESTPOINT ------------------------------------------\
    46 |             TestFile: tst_psStats09.c                                            |
    47 |            TestPoint: psStats functions{psStats(): deallocating memory}          |
    48 |             TestType: Positive                                                   |
    49 \----------------------------------------------------------------------------------/
     45/***************************** TESTPOINT ******************************************\
     46*             TestFile: tst_psStats09.c                                            *
     47*            TestPoint: psStats functions{psStats(): deallocating memory}          *
     48*             TestType: Positive                                                   *
     49\**********************************************************************************/
    5050
    5151
  • trunk/psLib/test/dataManip/verified/tst_psVectorFFT.stderr

    r1019 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psVectorFFT.c                                          |
    3 |            TestPoint: psFFT{600-testVectorFFT}                                   |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psVectorFFT.c                                          *
     3*            TestPoint: psFFT{600-testVectorFFT}                                   *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77
    88---> TESTPOINT PASSED (psFFT{600-testVectorFFT} | tst_psVectorFFT.c)
    99
    10 /----------------------------- TESTPOINT ------------------------------------------\
    11 |             TestFile: tst_psVectorFFT.c                                          |
    12 |            TestPoint: psFFT{601-testVectorRealImaginary}                         |
    13 |             TestType: Positive                                                   |
    14 \----------------------------------------------------------------------------------/
     10/***************************** TESTPOINT ******************************************\
     11*             TestFile: tst_psVectorFFT.c                                          *
     12*            TestPoint: psFFT{601-testVectorRealImaginary}                         *
     13*             TestType: Positive                                                   *
     14\**********************************************************************************/
    1515
    1616
    1717---> TESTPOINT PASSED (psFFT{601-testVectorRealImaginary} | tst_psVectorFFT.c)
    1818
    19 /----------------------------- TESTPOINT ------------------------------------------\
    20 |             TestFile: tst_psVectorFFT.c                                          |
    21 |            TestPoint: psFFT{602-testVectorComplex}                               |
    22 |             TestType: Positive                                                   |
    23 \----------------------------------------------------------------------------------/
     19/***************************** TESTPOINT ******************************************\
     20*             TestFile: tst_psVectorFFT.c                                          *
     21*            TestPoint: psFFT{602-testVectorComplex}                               *
     22*             TestType: Positive                                                   *
     23\**********************************************************************************/
    2424
    2525 <DATE> <TIME> <HOST> |I|testVectorCompl|Following should be an error (type mismatch).
     
    2828---> TESTPOINT PASSED (psFFT{602-testVectorComplex} | tst_psVectorFFT.c)
    2929
    30 /----------------------------- TESTPOINT ------------------------------------------\
    31 |             TestFile: tst_psVectorFFT.c                                          |
    32 |            TestPoint: psFFT{603-testVectorConjugate}                             |
    33 |             TestType: Positive                                                   |
    34 \----------------------------------------------------------------------------------/
     30/***************************** TESTPOINT ******************************************\
     31*             TestFile: tst_psVectorFFT.c                                          *
     32*            TestPoint: psFFT{603-testVectorConjugate}                             *
     33*             TestType: Positive                                                   *
     34\**********************************************************************************/
    3535
    3636
    3737---> TESTPOINT PASSED (psFFT{603-testVectorConjugate} | tst_psVectorFFT.c)
    3838
    39 /----------------------------- TESTPOINT ------------------------------------------\
    40 |             TestFile: tst_psVectorFFT.c                                          |
    41 |            TestPoint: psFFT{604-testVectorPowerSpectrum}                         |
    42 |             TestType: Positive                                                   |
    43 \----------------------------------------------------------------------------------/
     39/***************************** TESTPOINT ******************************************\
     40*             TestFile: tst_psVectorFFT.c                                          *
     41*            TestPoint: psFFT{604-testVectorPowerSpectrum}                         *
     42*             TestType: Positive                                                   *
     43\**********************************************************************************/
    4444
    4545
  • trunk/psLib/test/image/verified/tst_psImage.stderr

    r1033 r1034  
    55 <DATE> <TIME> <HOST> |I|testImageOverla|Following should error as image input is NULL
    66 <DATE> <TIME> <HOST> |E|psImageOverlayS|one of the input images was NULL.
    7 /----------------------------- TESTPOINT ------------------------------------------\
    8 |             TestFile: tst_psImage.c                                              |
    9 |            TestPoint: psImage{546/548-testImageAlloc/Free}                       |
    10 |             TestType: Positive                                                   |
    11 \----------------------------------------------------------------------------------/
     7/***************************** TESTPOINT ******************************************\
     8*             TestFile: tst_psImage.c                                              *
     9*            TestPoint: psImage{546/548-testImageAlloc/Free}                       *
     10*             TestType: Positive                                                   *
     11\**********************************************************************************/
    1212
    1313 <DATE> <TIME> <HOST> |I| testImageAlloc|#546 - psImageAlloc shall allocate memory for a psImage structure
     
    3939---> TESTPOINT PASSED (psImage{546/548-testImageAlloc/Free} | tst_psImage.c)
    4040
    41 /----------------------------- TESTPOINT ------------------------------------------\
    42 |             TestFile: tst_psImage.c                                              |
    43 |            TestPoint: psImage{547/550-testImageSubset}                           |
    44 |             TestType: Positive                                                   |
    45 \----------------------------------------------------------------------------------/
     41/***************************** TESTPOINT ******************************************\
     42*             TestFile: tst_psImage.c                                              *
     43*            TestPoint: psImage{547/550-testImageSubset}                           *
     44*             TestType: Positive                                                   *
     45\**********************************************************************************/
    4646
    4747 <DATE> <TIME> <HOST> |I|testImageSubset|memcpy(&preSubsetStruct,original,sizeof(psImage));
     
    8787---> TESTPOINT PASSED (psImage{547/550-testImageSubset} | tst_psImage.c)
    8888
    89 /----------------------------- TESTPOINT ------------------------------------------\
    90 |             TestFile: tst_psImage.c                                              |
    91 |            TestPoint: psImage{551-testImageCopy}                                 |
    92 |             TestType: Positive                                                   |
    93 \----------------------------------------------------------------------------------/
     89/***************************** TESTPOINT ******************************************\
     90*             TestFile: tst_psImage.c                                              *
     91*            TestPoint: psImage{551-testImageCopy}                                 *
     92*             TestType: Positive                                                   *
     93\**********************************************************************************/
    9494
    9595 <DATE> <TIME> <HOST> |I|  testImageCopy|An error should follow...
     
    9898---> TESTPOINT PASSED (psImage{551-testImageCopy} | tst_psImage.c)
    9999
    100 /----------------------------- TESTPOINT ------------------------------------------\
    101 |             TestFile: tst_psImage.c                                              |
    102 |            TestPoint: psImage{571-testImageClip}                                 |
    103 |             TestType: Positive                                                   |
    104 \----------------------------------------------------------------------------------/
     100/***************************** TESTPOINT ******************************************\
     101*             TestFile: tst_psImage.c                                              *
     102*            TestPoint: psImage{571-testImageClip}                                 *
     103*             TestType: Positive                                                   *
     104\**********************************************************************************/
    105105
    106106 <DATE> <TIME> <HOST> |I|  testImageClip|psImageClip shall limit the minimum and maximum data value within a psImage structure
     
    120120---> TESTPOINT PASSED (psImage{571-testImageClip} | tst_psImage.c)
    121121
    122 /----------------------------- TESTPOINT ------------------------------------------\
    123 |             TestFile: tst_psImage.c                                              |
    124 |            TestPoint: psImage{572-testImageClipNAN}                              |
    125 |             TestType: Positive                                                   |
    126 \----------------------------------------------------------------------------------/
     122/***************************** TESTPOINT ******************************************\
     123*             TestFile: tst_psImage.c                                              *
     124*            TestPoint: psImage{572-testImageClipNAN}                              *
     125*             TestType: Positive                                                   *
     126\**********************************************************************************/
    127127
    128128 <DATE> <TIME> <HOST> |I|testImageClipNA|psImageClipNaN shall modified pixel values of NaN with a specified value
     
    130130---> TESTPOINT PASSED (psImage{572-testImageClipNAN} | tst_psImage.c)
    131131
    132 /----------------------------- TESTPOINT ------------------------------------------\
    133 |             TestFile: tst_psImage.c                                              |
    134 |            TestPoint: psImage{573-testImageOverlay}                              |
    135 |             TestType: Positive                                                   |
    136 \----------------------------------------------------------------------------------/
     132/***************************** TESTPOINT ******************************************\
     133*             TestFile: tst_psImage.c                                              *
     134*            TestPoint: psImage{573-testImageOverlay}                              *
     135*             TestType: Positive                                                   *
     136\**********************************************************************************/
    137137
    138138 <DATE> <TIME> <HOST> |I|testImageOverla|Following should error as overlay isn't within image boundaries
  • trunk/psLib/test/image/verified/tst_psImageFFT.stderr

    r1019 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psImageFFT.c                                           |
    3 |            TestPoint: psFFT{600-testImageFFT}                                    |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psImageFFT.c                                           *
     3*            TestPoint: psFFT{600-testImageFFT}                                    *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77
    88---> TESTPOINT PASSED (psFFT{600-testImageFFT} | tst_psImageFFT.c)
    99
    10 /----------------------------- TESTPOINT ------------------------------------------\
    11 |             TestFile: tst_psImageFFT.c                                           |
    12 |            TestPoint: psFFT{601-testImageRealImaginary}                          |
    13 |             TestType: Positive                                                   |
    14 \----------------------------------------------------------------------------------/
     10/***************************** TESTPOINT ******************************************\
     11*             TestFile: tst_psImageFFT.c                                           *
     12*            TestPoint: psFFT{601-testImageRealImaginary}                          *
     13*             TestType: Positive                                                   *
     14\**********************************************************************************/
    1515
    1616
    1717---> TESTPOINT PASSED (psFFT{601-testImageRealImaginary} | tst_psImageFFT.c)
    1818
    19 /----------------------------- TESTPOINT ------------------------------------------\
    20 |             TestFile: tst_psImageFFT.c                                           |
    21 |            TestPoint: psFFT{602-testImageComplex}                                |
    22 |             TestType: Positive                                                   |
    23 \----------------------------------------------------------------------------------/
     19/***************************** TESTPOINT ******************************************\
     20*             TestFile: tst_psImageFFT.c                                           *
     21*            TestPoint: psFFT{602-testImageComplex}                                *
     22*             TestType: Positive                                                   *
     23\**********************************************************************************/
    2424
    2525 <DATE> <TIME> <HOST> |I|testImageComple|Following should be an error (type mismatch).
     
    3030---> TESTPOINT PASSED (psFFT{602-testImageComplex} | tst_psImageFFT.c)
    3131
    32 /----------------------------- TESTPOINT ------------------------------------------\
    33 |             TestFile: tst_psImageFFT.c                                           |
    34 |            TestPoint: psFFT{603-testImageConjugate}                              |
    35 |             TestType: Positive                                                   |
    36 \----------------------------------------------------------------------------------/
     32/***************************** TESTPOINT ******************************************\
     33*             TestFile: tst_psImageFFT.c                                           *
     34*            TestPoint: psFFT{603-testImageConjugate}                              *
     35*             TestType: Positive                                                   *
     36\**********************************************************************************/
    3737
    3838
    3939---> TESTPOINT PASSED (psFFT{603-testImageConjugate} | tst_psImageFFT.c)
    4040
    41 /----------------------------- TESTPOINT ------------------------------------------\
    42 |             TestFile: tst_psImageFFT.c                                           |
    43 |            TestPoint: psFFT{604-testImagePowerSpectrum}                          |
    44 |             TestType: Positive                                                   |
    45 \----------------------------------------------------------------------------------/
     41/***************************** TESTPOINT ******************************************\
     42*             TestFile: tst_psImageFFT.c                                           *
     43*            TestPoint: psFFT{604-testImagePowerSpectrum}                          *
     44*             TestType: Positive                                                   *
     45\**********************************************************************************/
    4646
    4747
  • trunk/psLib/test/image/verified/tst_psImageIO.stderr

    r1018 r1034  
    77 <DATE> <TIME> <HOST> |I|  testImageRead|Following should be an error as extname is invalid.
    88 <DATE> <TIME> <HOST> |E|psImageReadSect|Could not index to 'bogus' HDU for file tmpImages/MxN_F32.fits. (illegal HDU number)
    9 /----------------------------- TESTPOINT ------------------------------------------\
    10 |             TestFile: tst_psImageIO.c                                            |
    11 |            TestPoint: psImage{567-testImageRead}                                 |
    12 |             TestType: Positive                                                   |
    13 \----------------------------------------------------------------------------------/
     9/***************************** TESTPOINT ******************************************\
     10*             TestFile: tst_psImageIO.c                                            *
     11*            TestPoint: psImage{567-testImageRead}                                 *
     12*             TestType: Positive                                                   *
     13\**********************************************************************************/
    1414
    1515 <DATE> <TIME> <HOST> |I|  testImageRead|Following should be an error as file doesn't exist.
     
    2424---> TESTPOINT PASSED (psImage{567-testImageRead} | tst_psImageIO.c)
    2525
    26 /----------------------------- TESTPOINT ------------------------------------------\
    27 |             TestFile: tst_psImageIO.c                                            |
    28 |            TestPoint: psImage{569-testImageWrite}                                |
    29 |             TestType: Positive                                                   |
    30 \----------------------------------------------------------------------------------/
     26/***************************** TESTPOINT ******************************************\
     27*             TestFile: tst_psImageIO.c                                            *
     28*            TestPoint: psImage{569-testImageWrite}                                *
     29*             TestType: Positive                                                   *
     30\**********************************************************************************/
    3131
    3232
  • trunk/psLib/test/image/verified/tst_psImageStats00.stdout

    r1026 r1034  
    22* IMAGE SIZE is (1 by 1)
    33*******************************
    4 /----------------------------- TESTPOINT ------------------------------------------\
    5 |             TestFile: tst_psImageStats00.c                                       |
    6 |            TestPoint: psImageStats functions{Calculate Histogram, no mask}       |
    7 |             TestType: Positive                                                   |
    8 \----------------------------------------------------------------------------------/
     4/***************************** TESTPOINT ******************************************\
     5*             TestFile: tst_psImageStats00.c                                       *
     6*            TestPoint: psImageStats functions{Calculate Histogram, no mask}       *
     7*             TestType: Positive                                                   *
     8\**********************************************************************************/
    99
    1010Bin number 0 bounds: (0.000000 - 0.100000) data (1)
     
    3131---> TESTPOINT PASSED (psImageStats functions{Calculate Histogram, no mask} | tst_psImageStats00.c)
    3232
    33 /----------------------------- TESTPOINT ------------------------------------------\
    34 |             TestFile: tst_psImageStats00.c                                       |
    35 |            TestPoint: psImageStats functions{Calculate Histogram with mask}      |
    36 |             TestType: Positive                                                   |
    37 \----------------------------------------------------------------------------------/
     33/***************************** TESTPOINT ******************************************\
     34*             TestFile: tst_psImageStats00.c                                       *
     35*            TestPoint: psImageStats functions{Calculate Histogram with mask}      *
     36*             TestType: Positive                                                   *
     37\**********************************************************************************/
    3838
    3939Bin number 0 bounds: (0.000000 - 0.100000) data (1)
     
    6060---> TESTPOINT PASSED (psImageStats functions{Calculate Histogram with mask} | tst_psImageStats00.c)
    6161
    62 /----------------------------- TESTPOINT ------------------------------------------\
    63 |             TestFile: tst_psImageStats00.c                                       |
    64 |            TestPoint: psImageStats functions{Deallocate the psHistogram/psImage structure.} |
    65 |             TestType: Positive                                                   |
    66 \----------------------------------------------------------------------------------/
     62/***************************** TESTPOINT ******************************************\
     63*             TestFile: tst_psImageStats00.c                                       *
     64*            TestPoint: psImageStats functions{Deallocate the psHistogram/psImage structure.} *
     65*             TestType: Positive                                                   *
     66\**********************************************************************************/
    6767
    6868
     
    7272* IMAGE SIZE is (1 by 32)
    7373*******************************
    74 /----------------------------- TESTPOINT ------------------------------------------\
    75 |             TestFile: tst_psImageStats00.c                                       |
    76 |            TestPoint: psImageStats functions{Calculate Histogram, no mask}       |
    77 |             TestType: Positive                                                   |
    78 \----------------------------------------------------------------------------------/
     74/***************************** TESTPOINT ******************************************\
     75*             TestFile: tst_psImageStats00.c                                       *
     76*            TestPoint: psImageStats functions{Calculate Histogram, no mask}       *
     77*             TestType: Positive                                                   *
     78\**********************************************************************************/
    7979
    8080Bin number 0 bounds: (0.000000 - 1.650000) data (2)
     
    101101---> TESTPOINT PASSED (psImageStats functions{Calculate Histogram, no mask} | tst_psImageStats00.c)
    102102
    103 /----------------------------- TESTPOINT ------------------------------------------\
    104 |             TestFile: tst_psImageStats00.c                                       |
    105 |            TestPoint: psImageStats functions{Calculate Histogram with mask}      |
    106 |             TestType: Positive                                                   |
    107 \----------------------------------------------------------------------------------/
     103/***************************** TESTPOINT ******************************************\
     104*             TestFile: tst_psImageStats00.c                                       *
     105*            TestPoint: psImageStats functions{Calculate Histogram with mask}      *
     106*             TestType: Positive                                                   *
     107\**********************************************************************************/
    108108
    109109Bin number 0 bounds: (0.000000 - 1.650000) data (2)
     
    130130---> TESTPOINT PASSED (psImageStats functions{Calculate Histogram with mask} | tst_psImageStats00.c)
    131131
    132 /----------------------------- TESTPOINT ------------------------------------------\
    133 |             TestFile: tst_psImageStats00.c                                       |
    134 |            TestPoint: psImageStats functions{Deallocate the psHistogram/psImage structure.} |
    135 |             TestType: Positive                                                   |
    136 \----------------------------------------------------------------------------------/
     132/***************************** TESTPOINT ******************************************\
     133*             TestFile: tst_psImageStats00.c                                       *
     134*            TestPoint: psImageStats functions{Deallocate the psHistogram/psImage structure.} *
     135*             TestType: Positive                                                   *
     136\**********************************************************************************/
    137137
    138138
     
    142142* IMAGE SIZE is (32 by 1)
    143143*******************************
    144 /----------------------------- TESTPOINT ------------------------------------------\
    145 |             TestFile: tst_psImageStats00.c                                       |
    146 |            TestPoint: psImageStats functions{Calculate Histogram, no mask}       |
    147 |             TestType: Positive                                                   |
    148 \----------------------------------------------------------------------------------/
     144/***************************** TESTPOINT ******************************************\
     145*             TestFile: tst_psImageStats00.c                                       *
     146*            TestPoint: psImageStats functions{Calculate Histogram, no mask}       *
     147*             TestType: Positive                                                   *
     148\**********************************************************************************/
    149149
    150150Bin number 0 bounds: (0.000000 - 1.650000) data (2)
     
    171171---> TESTPOINT PASSED (psImageStats functions{Calculate Histogram, no mask} | tst_psImageStats00.c)
    172172
    173 /----------------------------- TESTPOINT ------------------------------------------\
    174 |             TestFile: tst_psImageStats00.c                                       |
    175 |            TestPoint: psImageStats functions{Calculate Histogram with mask}      |
    176 |             TestType: Positive                                                   |
    177 \----------------------------------------------------------------------------------/
     173/***************************** TESTPOINT ******************************************\
     174*             TestFile: tst_psImageStats00.c                                       *
     175*            TestPoint: psImageStats functions{Calculate Histogram with mask}      *
     176*             TestType: Positive                                                   *
     177\**********************************************************************************/
    178178
    179179Bin number 0 bounds: (0.000000 - 1.650000) data (2)
     
    200200---> TESTPOINT PASSED (psImageStats functions{Calculate Histogram with mask} | tst_psImageStats00.c)
    201201
    202 /----------------------------- TESTPOINT ------------------------------------------\
    203 |             TestFile: tst_psImageStats00.c                                       |
    204 |            TestPoint: psImageStats functions{Deallocate the psHistogram/psImage structure.} |
    205 |             TestType: Positive                                                   |
    206 \----------------------------------------------------------------------------------/
     202/***************************** TESTPOINT ******************************************\
     203*             TestFile: tst_psImageStats00.c                                       *
     204*            TestPoint: psImageStats functions{Deallocate the psHistogram/psImage structure.} *
     205*             TestType: Positive                                                   *
     206\**********************************************************************************/
    207207
    208208
     
    212212* IMAGE SIZE is (32 by 32)
    213213*******************************
    214 /----------------------------- TESTPOINT ------------------------------------------\
    215 |             TestFile: tst_psImageStats00.c                                       |
    216 |            TestPoint: psImageStats functions{Calculate Histogram, no mask}       |
    217 |             TestType: Positive                                                   |
    218 \----------------------------------------------------------------------------------/
     214/***************************** TESTPOINT ******************************************\
     215*             TestFile: tst_psImageStats00.c                                       *
     216*            TestPoint: psImageStats functions{Calculate Histogram, no mask}       *
     217*             TestType: Positive                                                   *
     218\**********************************************************************************/
    219219
    220220Bin number 0 bounds: (0.000000 - 3.200000) data (10)
     
    241241---> TESTPOINT PASSED (psImageStats functions{Calculate Histogram, no mask} | tst_psImageStats00.c)
    242242
    243 /----------------------------- TESTPOINT ------------------------------------------\
    244 |             TestFile: tst_psImageStats00.c                                       |
    245 |            TestPoint: psImageStats functions{Calculate Histogram with mask}      |
    246 |             TestType: Positive                                                   |
    247 \----------------------------------------------------------------------------------/
     243/***************************** TESTPOINT ******************************************\
     244*             TestFile: tst_psImageStats00.c                                       *
     245*            TestPoint: psImageStats functions{Calculate Histogram with mask}      *
     246*             TestType: Positive                                                   *
     247\**********************************************************************************/
    248248
    249249Bin number 0 bounds: (0.000000 - 3.200000) data (10)
     
    270270---> TESTPOINT PASSED (psImageStats functions{Calculate Histogram with mask} | tst_psImageStats00.c)
    271271
    272 /----------------------------- TESTPOINT ------------------------------------------\
    273 |             TestFile: tst_psImageStats00.c                                       |
    274 |            TestPoint: psImageStats functions{Deallocate the psHistogram/psImage structure.} |
    275 |             TestType: Positive                                                   |
    276 \----------------------------------------------------------------------------------/
     272/***************************** TESTPOINT ******************************************\
     273*             TestFile: tst_psImageStats00.c                                       *
     274*            TestPoint: psImageStats functions{Deallocate the psHistogram/psImage structure.} *
     275*             TestType: Positive                                                   *
     276\**********************************************************************************/
    277277
    278278
     
    282282* IMAGE SIZE is (32 by 64)
    283283*******************************
    284 /----------------------------- TESTPOINT ------------------------------------------\
    285 |             TestFile: tst_psImageStats00.c                                       |
    286 |            TestPoint: psImageStats functions{Calculate Histogram, no mask}       |
    287 |             TestType: Positive                                                   |
    288 \----------------------------------------------------------------------------------/
     284/***************************** TESTPOINT ******************************************\
     285*             TestFile: tst_psImageStats00.c                                       *
     286*            TestPoint: psImageStats functions{Calculate Histogram, no mask}       *
     287*             TestType: Positive                                                   *
     288\**********************************************************************************/
    289289
    290290Bin number 0 bounds: (0.000000 - 4.800000) data (15)
     
    311311---> TESTPOINT PASSED (psImageStats functions{Calculate Histogram, no mask} | tst_psImageStats00.c)
    312312
    313 /----------------------------- TESTPOINT ------------------------------------------\
    314 |             TestFile: tst_psImageStats00.c                                       |
    315 |            TestPoint: psImageStats functions{Calculate Histogram with mask}      |
    316 |             TestType: Positive                                                   |
    317 \----------------------------------------------------------------------------------/
     313/***************************** TESTPOINT ******************************************\
     314*             TestFile: tst_psImageStats00.c                                       *
     315*            TestPoint: psImageStats functions{Calculate Histogram with mask}      *
     316*             TestType: Positive                                                   *
     317\**********************************************************************************/
    318318
    319319Bin number 0 bounds: (0.000000 - 4.800000) data (15)
     
    340340---> TESTPOINT PASSED (psImageStats functions{Calculate Histogram with mask} | tst_psImageStats00.c)
    341341
    342 /----------------------------- TESTPOINT ------------------------------------------\
    343 |             TestFile: tst_psImageStats00.c                                       |
    344 |            TestPoint: psImageStats functions{Deallocate the psHistogram/psImage structure.} |
    345 |             TestType: Positive                                                   |
    346 \----------------------------------------------------------------------------------/
     342/***************************** TESTPOINT ******************************************\
     343*             TestFile: tst_psImageStats00.c                                       *
     344*            TestPoint: psImageStats functions{Deallocate the psHistogram/psImage structure.} *
     345*             TestType: Positive                                                   *
     346\**********************************************************************************/
    347347
    348348
     
    352352* IMAGE SIZE is (64 by 32)
    353353*******************************
    354 /----------------------------- TESTPOINT ------------------------------------------\
    355 |             TestFile: tst_psImageStats00.c                                       |
    356 |            TestPoint: psImageStats functions{Calculate Histogram, no mask}       |
    357 |             TestType: Positive                                                   |
    358 \----------------------------------------------------------------------------------/
     354/***************************** TESTPOINT ******************************************\
     355*             TestFile: tst_psImageStats00.c                                       *
     356*            TestPoint: psImageStats functions{Calculate Histogram, no mask}       *
     357*             TestType: Positive                                                   *
     358\**********************************************************************************/
    359359
    360360Bin number 0 bounds: (0.000000 - 4.800000) data (15)
     
    381381---> TESTPOINT PASSED (psImageStats functions{Calculate Histogram, no mask} | tst_psImageStats00.c)
    382382
    383 /----------------------------- TESTPOINT ------------------------------------------\
    384 |             TestFile: tst_psImageStats00.c                                       |
    385 |            TestPoint: psImageStats functions{Calculate Histogram with mask}      |
    386 |             TestType: Positive                                                   |
    387 \----------------------------------------------------------------------------------/
     383/***************************** TESTPOINT ******************************************\
     384*             TestFile: tst_psImageStats00.c                                       *
     385*            TestPoint: psImageStats functions{Calculate Histogram with mask}      *
     386*             TestType: Positive                                                   *
     387\**********************************************************************************/
    388388
    389389Bin number 0 bounds: (0.000000 - 4.800000) data (15)
     
    410410---> TESTPOINT PASSED (psImageStats functions{Calculate Histogram with mask} | tst_psImageStats00.c)
    411411
    412 /----------------------------- TESTPOINT ------------------------------------------\
    413 |             TestFile: tst_psImageStats00.c                                       |
    414 |            TestPoint: psImageStats functions{Deallocate the psHistogram/psImage structure.} |
    415 |             TestType: Positive                                                   |
    416 \----------------------------------------------------------------------------------/
    417 
    418 
    419 ---> TESTPOINT PASSED (psImageStats functions{Deallocate the psHistogram/psImage structure.} | tst_psImageStats00.c)
    420 
    421 /----------------------------- TESTPOINT ------------------------------------------\
    422 |             TestFile: tst_psImageStats00.c                                       |
    423 |            TestPoint: psImageStats functions{Calling psImageHistogram() with NULL parameters} |
    424 |             TestType: Positive                                                   |
    425 \----------------------------------------------------------------------------------/
     412/***************************** TESTPOINT ******************************************\
     413*             TestFile: tst_psImageStats00.c                                       *
     414*            TestPoint: psImageStats functions{Deallocate the psHistogram/psImage structure.} *
     415*             TestType: Positive                                                   *
     416\**********************************************************************************/
     417
     418
     419---> TESTPOINT PASSED (psImageStats functions{Deallocate the psHistogram/psImage structure.} | tst_psImageStats00.c)
     420
     421/***************************** TESTPOINT ******************************************\
     422*             TestFile: tst_psImageStats00.c                                       *
     423*            TestPoint: psImageStats functions{Calling psImageHistogram() with NULL parameters} *
     424*             TestType: Positive                                                   *
     425\**********************************************************************************/
    426426
    427427
  • trunk/psLib/test/image/verified/tst_psImageStats01.stdout

    r894 r1034  
    22* IMAGE SIZE is (1 by 1)
    33*******************************
    4 /----------------------------- TESTPOINT ------------------------------------------\
    5 |             TestFile: tst_psImageStats01.c                                       |
    6 |            TestPoint: psImageStats functions{Calculate Sample Mean, no mask %d}  |
    7 |             TestType: Positive                                                   |
    8 \----------------------------------------------------------------------------------/
     4/***************************** TESTPOINT ******************************************\
     5*             TestFile: tst_psImageStats01.c                                       *
     6*            TestPoint: psImageStats functions{Calculate Sample Mean, no mask %d}  *
     7*             TestType: Positive                                                   *
     8\**********************************************************************************/
    99
    1010The sample mean was 0.000000
     
    1212---> TESTPOINT PASSED (psImageStats functions{Calculate Sample Mean, no mask} | tst_psImageStats01.c)
    1313
    14 /----------------------------- TESTPOINT ------------------------------------------\
    15 |             TestFile: tst_psImageStats01.c                                       |
    16 |            TestPoint: psImageStats functions{Calculate Sample Mean with mask}    |
    17 |             TestType: Positive                                                   |
    18 \----------------------------------------------------------------------------------/
     14/***************************** TESTPOINT ******************************************\
     15*             TestFile: tst_psImageStats01.c                                       *
     16*            TestPoint: psImageStats functions{Calculate Sample Mean with mask}    *
     17*             TestType: Positive                                                   *
     18\**********************************************************************************/
    1919
    2020The sample mean was 0.000000
     
    2222---> TESTPOINT PASSED (psImageStats functions{Calculate Sample Mean with mask} | tst_psImageStats01.c)
    2323
    24 /----------------------------- TESTPOINT ------------------------------------------\
    25 |             TestFile: tst_psImageStats01.c                                       |
    26 |            TestPoint: psImageStats functions{Deallocate the psStats/psImage structure.} |
    27 |             TestType: Positive                                                   |
    28 \----------------------------------------------------------------------------------/
     24/***************************** TESTPOINT ******************************************\
     25*             TestFile: tst_psImageStats01.c                                       *
     26*            TestPoint: psImageStats functions{Deallocate the psStats/psImage structure.} *
     27*             TestType: Positive                                                   *
     28\**********************************************************************************/
    2929
    3030
     
    3434* IMAGE SIZE is (1 by 32)
    3535*******************************
    36 /----------------------------- TESTPOINT ------------------------------------------\
    37 |             TestFile: tst_psImageStats01.c                                       |
    38 |            TestPoint: psImageStats functions{Calculate Sample Mean, no mask %d}  |
    39 |             TestType: Positive                                                   |
    40 \----------------------------------------------------------------------------------/
    41 
    42 The sample mean was 15.500000
    43 
    44 ---> TESTPOINT PASSED (psImageStats functions{Calculate Sample Mean, no mask} | tst_psImageStats01.c)
    45 
    46 /----------------------------- TESTPOINT ------------------------------------------\
    47 |             TestFile: tst_psImageStats01.c                                       |
    48 |            TestPoint: psImageStats functions{Calculate Sample Mean with mask}    |
    49 |             TestType: Positive                                                   |
    50 \----------------------------------------------------------------------------------/
    51 
    52 The sample mean was 15.500000
    53 
    54 ---> TESTPOINT PASSED (psImageStats functions{Calculate Sample Mean with mask} | tst_psImageStats01.c)
    55 
    56 /----------------------------- TESTPOINT ------------------------------------------\
    57 |             TestFile: tst_psImageStats01.c                                       |
    58 |            TestPoint: psImageStats functions{Deallocate the psStats/psImage structure.} |
    59 |             TestType: Positive                                                   |
    60 \----------------------------------------------------------------------------------/
     36/***************************** TESTPOINT ******************************************\
     37*             TestFile: tst_psImageStats01.c                                       *
     38*            TestPoint: psImageStats functions{Calculate Sample Mean, no mask %d}  *
     39*             TestType: Positive                                                   *
     40\**********************************************************************************/
     41
     42The sample mean was 15.500000
     43
     44---> TESTPOINT PASSED (psImageStats functions{Calculate Sample Mean, no mask} | tst_psImageStats01.c)
     45
     46/***************************** TESTPOINT ******************************************\
     47*             TestFile: tst_psImageStats01.c                                       *
     48*            TestPoint: psImageStats functions{Calculate Sample Mean with mask}    *
     49*             TestType: Positive                                                   *
     50\**********************************************************************************/
     51
     52The sample mean was 15.500000
     53
     54---> TESTPOINT PASSED (psImageStats functions{Calculate Sample Mean with mask} | tst_psImageStats01.c)
     55
     56/***************************** TESTPOINT ******************************************\
     57*             TestFile: tst_psImageStats01.c                                       *
     58*            TestPoint: psImageStats functions{Deallocate the psStats/psImage structure.} *
     59*             TestType: Positive                                                   *
     60\**********************************************************************************/
    6161
    6262
     
    6666* IMAGE SIZE is (32 by 1)
    6767*******************************
    68 /----------------------------- TESTPOINT ------------------------------------------\
    69 |             TestFile: tst_psImageStats01.c                                       |
    70 |            TestPoint: psImageStats functions{Calculate Sample Mean, no mask %d}  |
    71 |             TestType: Positive                                                   |
    72 \----------------------------------------------------------------------------------/
    73 
    74 The sample mean was 15.500000
    75 
    76 ---> TESTPOINT PASSED (psImageStats functions{Calculate Sample Mean, no mask} | tst_psImageStats01.c)
    77 
    78 /----------------------------- TESTPOINT ------------------------------------------\
    79 |             TestFile: tst_psImageStats01.c                                       |
    80 |            TestPoint: psImageStats functions{Calculate Sample Mean with mask}    |
    81 |             TestType: Positive                                                   |
    82 \----------------------------------------------------------------------------------/
    83 
    84 The sample mean was 15.500000
    85 
    86 ---> TESTPOINT PASSED (psImageStats functions{Calculate Sample Mean with mask} | tst_psImageStats01.c)
    87 
    88 /----------------------------- TESTPOINT ------------------------------------------\
    89 |             TestFile: tst_psImageStats01.c                                       |
    90 |            TestPoint: psImageStats functions{Deallocate the psStats/psImage structure.} |
    91 |             TestType: Positive                                                   |
    92 \----------------------------------------------------------------------------------/
     68/***************************** TESTPOINT ******************************************\
     69*             TestFile: tst_psImageStats01.c                                       *
     70*            TestPoint: psImageStats functions{Calculate Sample Mean, no mask %d}  *
     71*             TestType: Positive                                                   *
     72\**********************************************************************************/
     73
     74The sample mean was 15.500000
     75
     76---> TESTPOINT PASSED (psImageStats functions{Calculate Sample Mean, no mask} | tst_psImageStats01.c)
     77
     78/***************************** TESTPOINT ******************************************\
     79*             TestFile: tst_psImageStats01.c                                       *
     80*            TestPoint: psImageStats functions{Calculate Sample Mean with mask}    *
     81*             TestType: Positive                                                   *
     82\**********************************************************************************/
     83
     84The sample mean was 15.500000
     85
     86---> TESTPOINT PASSED (psImageStats functions{Calculate Sample Mean with mask} | tst_psImageStats01.c)
     87
     88/***************************** TESTPOINT ******************************************\
     89*             TestFile: tst_psImageStats01.c                                       *
     90*            TestPoint: psImageStats functions{Deallocate the psStats/psImage structure.} *
     91*             TestType: Positive                                                   *
     92\**********************************************************************************/
    9393
    9494
     
    9898* IMAGE SIZE is (32 by 32)
    9999*******************************
    100 /----------------------------- TESTPOINT ------------------------------------------\
    101 |             TestFile: tst_psImageStats01.c                                       |
    102 |            TestPoint: psImageStats functions{Calculate Sample Mean, no mask %d}  |
    103 |             TestType: Positive                                                   |
    104 \----------------------------------------------------------------------------------/
     100/***************************** TESTPOINT ******************************************\
     101*             TestFile: tst_psImageStats01.c                                       *
     102*            TestPoint: psImageStats functions{Calculate Sample Mean, no mask %d}  *
     103*             TestType: Positive                                                   *
     104\**********************************************************************************/
    105105
    106106The sample mean was 31.000000
     
    108108---> TESTPOINT PASSED (psImageStats functions{Calculate Sample Mean, no mask} | tst_psImageStats01.c)
    109109
    110 /----------------------------- TESTPOINT ------------------------------------------\
    111 |             TestFile: tst_psImageStats01.c                                       |
    112 |            TestPoint: psImageStats functions{Calculate Sample Mean with mask}    |
    113 |             TestType: Positive                                                   |
    114 \----------------------------------------------------------------------------------/
     110/***************************** TESTPOINT ******************************************\
     111*             TestFile: tst_psImageStats01.c                                       *
     112*            TestPoint: psImageStats functions{Calculate Sample Mean with mask}    *
     113*             TestType: Positive                                                   *
     114\**********************************************************************************/
    115115
    116116The sample mean was 26.212767
     
    118118---> TESTPOINT PASSED (psImageStats functions{Calculate Sample Mean with mask} | tst_psImageStats01.c)
    119119
    120 /----------------------------- TESTPOINT ------------------------------------------\
    121 |             TestFile: tst_psImageStats01.c                                       |
    122 |            TestPoint: psImageStats functions{Deallocate the psStats/psImage structure.} |
    123 |             TestType: Positive                                                   |
    124 \----------------------------------------------------------------------------------/
     120/***************************** TESTPOINT ******************************************\
     121*             TestFile: tst_psImageStats01.c                                       *
     122*            TestPoint: psImageStats functions{Deallocate the psStats/psImage structure.} *
     123*             TestType: Positive                                                   *
     124\**********************************************************************************/
    125125
    126126
     
    130130* IMAGE SIZE is (32 by 64)
    131131*******************************
    132 /----------------------------- TESTPOINT ------------------------------------------\
    133 |             TestFile: tst_psImageStats01.c                                       |
    134 |            TestPoint: psImageStats functions{Calculate Sample Mean, no mask %d}  |
    135 |             TestType: Positive                                                   |
    136 \----------------------------------------------------------------------------------/
     132/***************************** TESTPOINT ******************************************\
     133*             TestFile: tst_psImageStats01.c                                       *
     134*            TestPoint: psImageStats functions{Calculate Sample Mean, no mask %d}  *
     135*             TestType: Positive                                                   *
     136\**********************************************************************************/
    137137
    138138The sample mean was 47.000000
     
    140140---> TESTPOINT PASSED (psImageStats functions{Calculate Sample Mean, no mask} | tst_psImageStats01.c)
    141141
    142 /----------------------------- TESTPOINT ------------------------------------------\
    143 |             TestFile: tst_psImageStats01.c                                       |
    144 |            TestPoint: psImageStats functions{Calculate Sample Mean with mask}    |
    145 |             TestType: Positive                                                   |
    146 \----------------------------------------------------------------------------------/
     142/***************************** TESTPOINT ******************************************\
     143*             TestFile: tst_psImageStats01.c                                       *
     144*            TestPoint: psImageStats functions{Calculate Sample Mean with mask}    *
     145*             TestType: Positive                                                   *
     146\**********************************************************************************/
    147147
    148148The sample mean was 39.656349
     
    150150---> TESTPOINT PASSED (psImageStats functions{Calculate Sample Mean with mask} | tst_psImageStats01.c)
    151151
    152 /----------------------------- TESTPOINT ------------------------------------------\
    153 |             TestFile: tst_psImageStats01.c                                       |
    154 |            TestPoint: psImageStats functions{Deallocate the psStats/psImage structure.} |
    155 |             TestType: Positive                                                   |
    156 \----------------------------------------------------------------------------------/
     152/***************************** TESTPOINT ******************************************\
     153*             TestFile: tst_psImageStats01.c                                       *
     154*            TestPoint: psImageStats functions{Deallocate the psStats/psImage structure.} *
     155*             TestType: Positive                                                   *
     156\**********************************************************************************/
    157157
    158158
     
    162162* IMAGE SIZE is (64 by 32)
    163163*******************************
    164 /----------------------------- TESTPOINT ------------------------------------------\
    165 |             TestFile: tst_psImageStats01.c                                       |
    166 |            TestPoint: psImageStats functions{Calculate Sample Mean, no mask %d}  |
    167 |             TestType: Positive                                                   |
    168 \----------------------------------------------------------------------------------/
     164/***************************** TESTPOINT ******************************************\
     165*             TestFile: tst_psImageStats01.c                                       *
     166*            TestPoint: psImageStats functions{Calculate Sample Mean, no mask %d}  *
     167*             TestType: Positive                                                   *
     168\**********************************************************************************/
    169169
    170170The sample mean was 47.000000
     
    172172---> TESTPOINT PASSED (psImageStats functions{Calculate Sample Mean, no mask} | tst_psImageStats01.c)
    173173
    174 /----------------------------- TESTPOINT ------------------------------------------\
    175 |             TestFile: tst_psImageStats01.c                                       |
    176 |            TestPoint: psImageStats functions{Calculate Sample Mean with mask}    |
    177 |             TestType: Positive                                                   |
    178 \----------------------------------------------------------------------------------/
     174/***************************** TESTPOINT ******************************************\
     175*             TestFile: tst_psImageStats01.c                                       *
     176*            TestPoint: psImageStats functions{Calculate Sample Mean with mask}    *
     177*             TestType: Positive                                                   *
     178\**********************************************************************************/
    179179
    180180The sample mean was 39.656349
     
    182182---> TESTPOINT PASSED (psImageStats functions{Calculate Sample Mean with mask} | tst_psImageStats01.c)
    183183
    184 /----------------------------- TESTPOINT ------------------------------------------\
    185 |             TestFile: tst_psImageStats01.c                                       |
    186 |            TestPoint: psImageStats functions{Deallocate the psStats/psImage structure.} |
    187 |             TestType: Positive                                                   |
    188 \----------------------------------------------------------------------------------/
    189 
    190 
    191 ---> TESTPOINT PASSED (psImageStats functions{Deallocate the psStats/psImage structure.} | tst_psImageStats01.c)
    192 
    193 /----------------------------- TESTPOINT ------------------------------------------\
    194 |             TestFile: tst_psImageStats01.c                                       |
    195 |            TestPoint: psImageStats functions{Test With Various Null Inputs}      |
    196 |             TestType: Positive                                                   |
    197 \----------------------------------------------------------------------------------/
     184/***************************** TESTPOINT ******************************************\
     185*             TestFile: tst_psImageStats01.c                                       *
     186*            TestPoint: psImageStats functions{Deallocate the psStats/psImage structure.} *
     187*             TestType: Positive                                                   *
     188\**********************************************************************************/
     189
     190
     191---> TESTPOINT PASSED (psImageStats functions{Deallocate the psStats/psImage structure.} | tst_psImageStats01.c)
     192
     193/***************************** TESTPOINT ******************************************\
     194*             TestFile: tst_psImageStats01.c                                       *
     195*            TestPoint: psImageStats functions{Test With Various Null Inputs}      *
     196*             TestType: Positive                                                   *
     197\**********************************************************************************/
    198198
    199199
  • trunk/psLib/test/image/verified/tst_psImageStats02.stdout

    r1026 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psImageStats02.c                                       |
    3 |            TestPoint: psImageStats functions{Calculate Chebyshev Polynomials, no mask} |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psImageStats02.c                                       *
     3*            TestPoint: psImageStats functions{Calculate Chebyshev Polynomials, no mask} *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77
    88---> TESTPOINT PASSED (psImageStats functions{Calculate Chebyshev Polynomials, no mask} | tst_psImageStats02.c)
    99
    10 /----------------------------- TESTPOINT ------------------------------------------\
    11 |             TestFile: tst_psImageStats02.c                                       |
    12 |            TestPoint: psImageStats functions{Calculate Chebyshev Polynomials, no mask} |
    13 |             TestType: Positive                                                   |
    14 \----------------------------------------------------------------------------------/
     10/***************************** TESTPOINT ******************************************\
     11*             TestFile: tst_psImageStats02.c                                       *
     12*            TestPoint: psImageStats functions{Calculate Chebyshev Polynomials, no mask} *
     13*             TestType: Positive                                                   *
     14\**********************************************************************************/
    1515
    1616
    1717---> TESTPOINT PASSED (psImageStats functions{Calculate Chebyshev Polynomials, no mask} | tst_psImageStats02.c)
    1818
    19 /----------------------------- TESTPOINT ------------------------------------------\
    20 |             TestFile: tst_psImageStats02.c                                       |
    21 |            TestPoint: psImageStats functions{Deallocate the psStats/psImage structure.} |
    22 |             TestType: Positive                                                   |
    23 \----------------------------------------------------------------------------------/
     19/***************************** TESTPOINT ******************************************\
     20*             TestFile: tst_psImageStats02.c                                       *
     21*            TestPoint: psImageStats functions{Deallocate the psStats/psImage structure.} *
     22*             TestType: Positive                                                   *
     23\**********************************************************************************/
    2424
    2525
  • trunk/psLib/test/psTest.c

    r1029 r1034  
    2020#include "psError.h"
    2121
    22 #define HEADER_TOP    "/----------------------------- TESTPOINT ------------------------------------------\\\n"
    23 #define HEADER_LINE_STRING   "| %20s: %-58s |\n"
    24 #define HEADER_LINE_INT      "| %20s: %-58d |\n"
    25 #define HEADER_BOTTOM "\\----------------------------------------------------------------------------------/\n\n"
     22#define HEADER_TOP    "/***************************** TESTPOINT ******************************************\\\n"
     23#define HEADER_LINE_STRING   "* %20s: %-58s *\n"
     24#define HEADER_LINE_INT      "* %20s: %-58d *\n"
     25#define HEADER_BOTTOM "\\**********************************************************************************/\n\n"
    2626
    2727bool p_runTestSuite(FILE *fp, const char* testPointFile, const char* packageName, testDescription tests[])
  • trunk/psLib/test/sysUtils/verified/atst_psAbort_01.stderr

    r1018 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: atst_psAbort_01.c                                          |
    3 |            TestPoint: psAbort{Multiple type values in abort message}             |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: atst_psAbort_01.c                                          *
     3*            TestPoint: psAbort{Multiple type values in abort message}             *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77 <DATE> <TIME> <HOST> |A|           main|ALL TYPES intval = 1 longval = 2 floatval = 3.010000 charval = E strval = E R R O R
  • trunk/psLib/test/sysUtils/verified/atst_psAbort_02.stderr

    r1018 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: atst_psAbort_02.c                                          |
    3 |            TestPoint: psAbort{String values in abort message}                    |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: atst_psAbort_02.c                                          *
     3*            TestPoint: psAbort{String values in abort message}                    *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77 <DATE> <TIME> <HOST> |A|       __LINE__|NO_VALUES
  • trunk/psLib/test/sysUtils/verified/atst_psAbort_03.stderr

    r587 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: atst_psAbort_03.c                                          |
    3 |            TestPoint: psAbort{Empty strings in abort message}                    |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: atst_psAbort_03.c                                          *
     3*            TestPoint: psAbort{Empty strings in abort message}                    *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77 <DATE> <TIME> <HOST> |A|               |
  • trunk/psLib/test/sysUtils/verified/tst_psError.stderr

    r1018 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psError.c                                              |
    3 |            TestPoint: psError{Multiple type values in error message}             |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psError.c                                              *
     3*            TestPoint: psError{Multiple type values in error message}             *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77 <DATE> <TIME> <HOST> |E|           main|ALL TYPES intval = 1 longval = 2 floatval = 3.010000 charval = E strval = E R R O R
     
    99---> TESTPOINT PASSED (psError{Multiple type values in error message} | tst_psError.c)
    1010
    11 /----------------------------- TESTPOINT ------------------------------------------\
    12 |             TestFile: tst_psError.c                                              |
    13 |            TestPoint: psError{String values in error message}                    |
    14 |             TestType: Positive                                                   |
    15 \----------------------------------------------------------------------------------/
     11/***************************** TESTPOINT ******************************************\
     12*             TestFile: tst_psError.c                                              *
     13*            TestPoint: psError{String values in error message}                    *
     14*             TestType: Positive                                                   *
     15\**********************************************************************************/
    1616
    1717 <DATE> <TIME> <HOST> |E|       __LINE__|NO VALUES
     
    1919---> TESTPOINT PASSED (psError{String values in error message} | tst_psError.c)
    2020
    21 /----------------------------- TESTPOINT ------------------------------------------\
    22 |             TestFile: tst_psError.c                                              |
    23 |            TestPoint: psError{Empty strings in error message}                    |
    24 |             TestType: Positive                                                   |
    25 \----------------------------------------------------------------------------------/
     21/***************************** TESTPOINT ******************************************\
     22*             TestFile: tst_psError.c                                              *
     23*            TestPoint: psError{Empty strings in error message}                    *
     24*             TestType: Positive                                                   *
     25\**********************************************************************************/
    2626
    2727 <DATE> <TIME> <HOST> |E|               |
  • trunk/psLib/test/sysUtils/verified/tst_psHash00.stdout

    r588 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psHash00.c                                             |
    3 |            TestPoint: psHash functions{psHashAlloc()}                            |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psHash00.c                                             *
     3*            TestPoint: psHash functions{psHashAlloc()}                            *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77
  • trunk/psLib/test/sysUtils/verified/tst_psHash01.stdout

    r588 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psHash01.c                                             |
    3 |            TestPoint: psHash functions{psHashFree()}                             |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psHash01.c                                             *
     3*            TestPoint: psHash functions{psHashFree()}                             *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77
  • trunk/psLib/test/sysUtils/verified/tst_psHash02.stdout

    r588 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psHash02.c                                             |
    3 |            TestPoint: psHash functions{psHashInsert()}                           |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psHash02.c                                             *
     3*            TestPoint: psHash functions{psHashInsert()}                           *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77
  • trunk/psLib/test/sysUtils/verified/tst_psHash03.stdout

    r935 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psHash03.c                                             |
    3 |            TestPoint: psHash functions{psHashRemove()}                           |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psHash03.c                                             *
     3*            TestPoint: psHash functions{psHashRemove()}                           *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77
  • trunk/psLib/test/sysUtils/verified/tst_psHash04.stdout

    r881 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psHash04.c                                             |
    3 |            TestPoint: psHash functions{psHashKeyList()}                          |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psHash04.c                                             *
     3*            TestPoint: psHash functions{psHashKeyList()}                          *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77Linked List Entries: ENTRY03
  • trunk/psLib/test/sysUtils/verified/tst_psLogMsg00.stdout

    r853 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psLogMsg00.c                                           |
    3 |            TestPoint: psLogMsg functions{default log levels, printf-style strings} |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psLogMsg00.c                                           *
     3*            TestPoint: psLogMsg functions{default log levels, printf-style strings} *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77
    88---> TESTPOINT PASSED (psLogMsg functions{default log levels} | tst_psLogMsg00.c)
    99
    10 /----------------------------- TESTPOINT ------------------------------------------\
    11 |             TestFile: tst_psLogMsg00.c                                           |
    12 |            TestPoint: psLogMsg functions{default log levels, psVLogMsg()}        |
    13 |             TestType: Positive                                                   |
    14 \----------------------------------------------------------------------------------/
     10/***************************** TESTPOINT ******************************************\
     11*             TestFile: tst_psLogMsg00.c                                           *
     12*            TestPoint: psLogMsg functions{default log levels, psVLogMsg()}        *
     13*             TestType: Positive                                                   *
     14\**********************************************************************************/
    1515
    1616
  • trunk/psLib/test/sysUtils/verified/tst_psLogMsg01.stdout

    r963 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psLogMsg01.c                                           |
    3 |            TestPoint: psLogMsg functions{psLogSetLevel()}                        |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psLogMsg01.c                                           *
     3*            TestPoint: psLogMsg functions{psLogSetLevel()}                        *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77
  • trunk/psLib/test/sysUtils/verified/tst_psLogMsg02.stdout

    r1026 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psLogMsg02.c                                           |
    3 |            TestPoint: psLogMsg functions{psLogSetFormat()}                       |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psLogMsg02.c                                           *
     3*            TestPoint: psLogMsg functions{psLogSetFormat()}                       *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77------------- psLogSetFormat() -------------
     
    1515---> TESTPOINT PASSED (psLogMsg functions{psLogSetFormat()} | tst_psLogMsg02.c)
    1616
    17 /----------------------------- TESTPOINT ------------------------------------------\
    18 |             TestFile: tst_psLogMsg02.c                                           |
    19 |            TestPoint: psLogMsg functions{Output Format}                          |
    20 |             TestType: Positive                                                   |
    21 \----------------------------------------------------------------------------------/
     17/***************************** TESTPOINT ******************************************\
     18*             TestFile: tst_psLogMsg02.c                                           *
     19*            TestPoint: psLogMsg functions{Output Format}                          *
     20*             TestType: Positive                                                   *
     21\**********************************************************************************/
    2222
    2323
  • trunk/psLib/test/sysUtils/verified/tst_psLogMsg03.stdout

    r1026 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psLogMsg03.c                                           |
    3 |            TestPoint: psLogMsg functions{psLogSetDestination()}                  |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psLogMsg03.c                                           *
     3*            TestPoint: psLogMsg functions{psLogSetDestination()}                  *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77------------- psLogSetDestination(PS_LOG_NONE) -------------
  • trunk/psLib/test/sysUtils/verified/tst_psMemory.stderr

    r1030 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psMemory.c                                             |
    3 |            TestPoint: psMemory{449-TPCheckBufferPositive}                        |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psMemory.c                                             *
     3*            TestPoint: psMemory{449-TPCheckBufferPositive}                        *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77 <DATE> <TIME> <HOST> |I|TPCheckBufferPo|psAlloc shall allocate memory blocks writeable by caller.
     
    99---> TESTPOINT PASSED (psMemory{449-TPCheckBufferPositive} | tst_psMemory.c)
    1010
    11 /----------------------------- TESTPOINT ------------------------------------------\
    12 |             TestFile: tst_psMemory.c                                             |
    13 |            TestPoint: psMemory{450-TPOutOfMemory}                                |
    14 |             TestType: Positive                                                   |
    15 \----------------------------------------------------------------------------------/
     11/***************************** TESTPOINT ******************************************\
     12*             TestFile: tst_psMemory.c                                             *
     13*            TestPoint: psMemory{450-TPOutOfMemory}                                *
     14*             TestType: Positive                                                   *
     15\**********************************************************************************/
    1616
    1717 <DATE> <TIME> <HOST> |I|  TPOutOfMemory|Upon requesting more memory than is available, psalloc shall call the psMemExhaustedCallback.
     
    2121---> TESTPOINT PASSED (psMemory{450-TPOutOfMemory} | tst_psMemory.c)
    2222
    23 /----------------------------- TESTPOINT ------------------------------------------\
    24 |             TestFile: tst_psMemory.c                                             |
    25 |            TestPoint: psMemory{451-TPrealloc}                                    |
    26 |             TestType: Positive                                                   |
    27 \----------------------------------------------------------------------------------/
     23/***************************** TESTPOINT ******************************************\
     24*             TestFile: tst_psMemory.c                                             *
     25*            TestPoint: psMemory{451-TPrealloc}                                    *
     26*             TestType: Positive                                                   *
     27\**********************************************************************************/
    2828
    2929 <DATE> <TIME> <HOST> |I|      TPrealloc|psRealloc shall increase/decrease memory buffer while preserving contents
     
    3333---> TESTPOINT PASSED (psMemory{451-TPrealloc} | tst_psMemory.c)
    3434
    35 /----------------------------- TESTPOINT ------------------------------------------\
    36 |             TestFile: tst_psMemory.c                                             |
    37 |            TestPoint: psMemory{452/453-TPallocCallback}                          |
    38 |             TestType: Positive                                                   |
    39 \----------------------------------------------------------------------------------/
     35/***************************** TESTPOINT ******************************************\
     36*             TestFile: tst_psMemory.c                                             *
     37*            TestPoint: psMemory{452/453-TPallocCallback}                          *
     38*             TestType: Positive                                                   *
     39\**********************************************************************************/
    4040
    4141 <DATE> <TIME> <HOST> |I|TPallocCallback|call to psAlloc/psRealloc shall generate a callback if specified memory ID is allocated.
     
    5050---> TESTPOINT PASSED (psMemory{452/453-TPallocCallback} | tst_psMemory.c)
    5151
    52 /----------------------------- TESTPOINT ------------------------------------------\
    53 |             TestFile: tst_psMemory.c                                             |
    54 |            TestPoint: psMemory{454-TPcheckLeaks}                                 |
    55 |             TestType: Positive                                                   |
    56 \----------------------------------------------------------------------------------/
     52/***************************** TESTPOINT ******************************************\
     53*             TestFile: tst_psMemory.c                                             *
     54*            TestPoint: psMemory{454-TPcheckLeaks}                                 *
     55*             TestType: Positive                                                   *
     56\**********************************************************************************/
    5757
    5858 <DATE> <TIME> <HOST> |I|   TPcheckLeaks|psMemCheckLeaks shall return the number of blocks above an ID that are still allocated
     
    7272---> TESTPOINT PASSED (psMemory{454-TPcheckLeaks} | tst_psMemory.c)
    7373
    74 /----------------------------- TESTPOINT ------------------------------------------\
    75 |             TestFile: tst_psMemory.c                                             |
    76 |            TestPoint: psMemory{455-TPmemCorruption}                              |
    77 |             TestType: Positive                                                   |
    78 \----------------------------------------------------------------------------------/
     74/***************************** TESTPOINT ******************************************\
     75*             TestFile: tst_psMemory.c                                             *
     76*            TestPoint: psMemory{455-TPmemCorruption}                              *
     77*             TestType: Positive                                                   *
     78\**********************************************************************************/
    7979
    8080 <DATE> <TIME> <HOST> |I|TPmemCorruption|psMemCheckCorruption shall detect memory corruptions
     
    8585---> TESTPOINT PASSED (psMemory{455-TPmemCorruption} | tst_psMemory.c)
    8686
    87 /----------------------------- TESTPOINT ------------------------------------------\
    88 |             TestFile: tst_psMemory.c                                             |
    89 |            TestPoint: psMemory{456-TPFreeReferencedMemory}                       |
    90 |             TestType: Positive                                                   |
    91 \----------------------------------------------------------------------------------/
     87/***************************** TESTPOINT ******************************************\
     88*             TestFile: tst_psMemory.c                                             *
     89*            TestPoint: psMemory{456-TPFreeReferencedMemory}                       *
     90*             TestType: Positive                                                   *
     91\**********************************************************************************/
    9292
    9393 <DATE> <TIME> <HOST> |I|TPFreeReference|memory reference count shall be incrementable/decrementable
  • trunk/psLib/test/sysUtils/verified/tst_psStringCopy.stderr

    r1018 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psStringCopy.c                                         |
    3 |            TestPoint: psStringCopy{Verify string copy}                           |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psStringCopy.c                                         *
     3*            TestPoint: psStringCopy{Verify string copy}                           *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77
    88---> TESTPOINT PASSED (psStringCopy{Verify string copy} | tst_psStringCopy.c)
    99
    10 /----------------------------- TESTPOINT ------------------------------------------\
    11 |             TestFile: tst_psStringCopy.c                                         |
    12 |            TestPoint: psStringCopy{Verify empty string copy}                     |
    13 |             TestType: Positive                                                   |
    14 \----------------------------------------------------------------------------------/
     10/***************************** TESTPOINT ******************************************\
     11*             TestFile: tst_psStringCopy.c                                         *
     12*            TestPoint: psStringCopy{Verify empty string copy}                     *
     13*             TestType: Positive                                                   *
     14\**********************************************************************************/
    1515
    1616
    1717---> TESTPOINT PASSED (psStringCopy{Verify empty string copy} | tst_psStringCopy.c)
    1818
    19 /----------------------------- TESTPOINT ------------------------------------------\
    20 |             TestFile: tst_psStringCopy.c                                         |
    21 |            TestPoint: psStringNCopy{Verify string copy with length}              |
    22 |             TestType: Positive                                                   |
    23 \----------------------------------------------------------------------------------/
     19/***************************** TESTPOINT ******************************************\
     20*             TestFile: tst_psStringCopy.c                                         *
     21*            TestPoint: psStringNCopy{Verify string copy with length}              *
     22*             TestType: Positive                                                   *
     23\**********************************************************************************/
    2424
    2525
    2626---> TESTPOINT PASSED (psStringNCopy{Verify string copy with length} | tst_psStringCopy.c)
    2727
    28 /----------------------------- TESTPOINT ------------------------------------------\
    29 |             TestFile: tst_psStringCopy.c                                         |
    30 |            TestPoint: psStringNCopy{Verify empty string copy with length}        |
    31 |             TestType: Positive                                                   |
    32 \----------------------------------------------------------------------------------/
     28/***************************** TESTPOINT ******************************************\
     29*             TestFile: tst_psStringCopy.c                                         *
     30*            TestPoint: psStringNCopy{Verify empty string copy with length}        *
     31*             TestType: Positive                                                   *
     32\**********************************************************************************/
    3333
    3434
    3535---> TESTPOINT PASSED (psStringNCopy{Verify empty string copy with length} | tst_psStringCopy.c)
    3636
    37 /----------------------------- TESTPOINT ------------------------------------------\
    38 |             TestFile: tst_psStringCopy.c                                         |
    39 |            TestPoint: psStringNCopy{Copy string to larger string}                |
    40 |             TestType: Positive                                                   |
    41 \----------------------------------------------------------------------------------/
     37/***************************** TESTPOINT ******************************************\
     38*             TestFile: tst_psStringCopy.c                                         *
     39*            TestPoint: psStringNCopy{Copy string to larger string}                *
     40*             TestType: Positive                                                   *
     41\**********************************************************************************/
    4242
    4343
    4444---> TESTPOINT PASSED (psStringNCopy{Copy string to larger string} | tst_psStringCopy.c)
    4545
    46 /----------------------------- TESTPOINT ------------------------------------------\
    47 |             TestFile: tst_psStringCopy.c                                         |
    48 |            TestPoint: psStringNCopy{Copy string with negative size}              |
    49 |             TestType: Positive                                                   |
    50 \----------------------------------------------------------------------------------/
     46/***************************** TESTPOINT ******************************************\
     47*             TestFile: tst_psStringCopy.c                                         *
     48*            TestPoint: psStringNCopy{Copy string with negative size}              *
     49*             TestType: Positive                                                   *
     50\**********************************************************************************/
    5151
    5252 <DATE> <TIME> <HOST> |E|     psString.c|psStringNCopy with negative count specified -5
     
    5454---> TESTPOINT PASSED (psStringNCopy{Copy string with negative size} | tst_psStringCopy.c)
    5555
    56 /----------------------------- TESTPOINT ------------------------------------------\
    57 |             TestFile: tst_psStringCopy.c                                         |
    58 |            TestPoint: PS_STRING{Verify creation of string literal}               |
    59 |             TestType: Positive                                                   |
    60 \----------------------------------------------------------------------------------/
     56/***************************** TESTPOINT ******************************************\
     57*             TestFile: tst_psStringCopy.c                                         *
     58*            TestPoint: PS_STRING{Verify creation of string literal}               *
     59*             TestType: Positive                                                   *
     60\**********************************************************************************/
    6161
    6262
  • trunk/psLib/test/sysUtils/verified/tst_psTrace00.stdout

    r905 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psTrace00.c                                            |
    3 |            TestPoint: psTrace functions{psTraceSetLevel() and psTraceGetLevel()} |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psTrace00.c                                            *
     3*            TestPoint: psTrace functions{psTraceSetLevel() and psTraceGetLevel()} *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77
  • trunk/psLib/test/sysUtils/verified/tst_psTrace01.stdout

    r589 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psTrace01.c                                            |
    3 |            TestPoint: psTrace functions{psTraceReset()}                          |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psTrace01.c                                            *
     3*            TestPoint: psTrace functions{psTraceReset()}                          *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77
  • trunk/psLib/test/sysUtils/verified/tst_psTrace02.stdout

    r893 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psTrace02.c                                            |
    3 |            TestPoint: psTrace functions{psTrace()}                               |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psTrace02.c                                            *
     3*            TestPoint: psTrace functions{psTrace()}                               *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77     (0) This message should be displayed (beefface)
     
    1111---> TESTPOINT PASSED (psTrace functions{psTrace()} | tst_psTrace02.c)
    1212
    13 /----------------------------- TESTPOINT ------------------------------------------\
    14 |             TestFile: tst_psTrace02.c                                            |
    15 |            TestPoint: psTrace functions{psTrace()}                               |
    16 |             TestType: Positive                                                   |
    17 \----------------------------------------------------------------------------------/
     13/***************************** TESTPOINT ******************************************\
     14*             TestFile: tst_psTrace02.c                                            *
     15*            TestPoint: psTrace functions{psTrace()}                               *
     16*             TestType: Positive                                                   *
     17\**********************************************************************************/
    1818
    1919
    2020---> TESTPOINT PASSED (psTrace functions{psTrace()} | tst_psTrace02.c)
    2121
    22 /----------------------------- TESTPOINT ------------------------------------------\
    23 |             TestFile: tst_psTrace02.c                                            |
    24 |            TestPoint: psTrace functions{psTrace()}                               |
    25 |             TestType: Positive                                                   |
    26 \----------------------------------------------------------------------------------/
     22/***************************** TESTPOINT ******************************************\
     23*             TestFile: tst_psTrace02.c                                            *
     24*            TestPoint: psTrace functions{psTrace()}                               *
     25*             TestType: Positive                                                   *
     26\**********************************************************************************/
    2727
    2828     (0) This message should be displayed (beefface)
     
    3232---> TESTPOINT PASSED (psTrace functions{psTrace()} | tst_psTrace02.c)
    3333
    34 /----------------------------- TESTPOINT ------------------------------------------\
    35 |             TestFile: tst_psTrace02.c                                            |
    36 |            TestPoint: psTrace functions{psTrace()}                               |
    37 |             TestType: Positive                                                   |
    38 \----------------------------------------------------------------------------------/
     34/***************************** TESTPOINT ******************************************\
     35*             TestFile: tst_psTrace02.c                                            *
     36*            TestPoint: psTrace functions{psTrace()}                               *
     37*             TestType: Positive                                                   *
     38\**********************************************************************************/
    3939
    4040
  • trunk/psLib/test/sysUtils/verified/tst_psTrace03.stdout

    r589 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psTrace03.c                                            |
    3 |            TestPoint: psTrace functions{psTracePrintLevels()}                    |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psTrace03.c                                            *
     3*            TestPoint: psTrace functions{psTracePrintLevels()}                    *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77.                    9
  • trunk/psLib/test/sysUtils/verified/tst_psTrace04.stdout

    r589 r1034  
    1 /----------------------------- TESTPOINT ------------------------------------------\
    2 |             TestFile: tst_psTrace04.c                                            |
    3 |            TestPoint: psTrace functions{Testing psTraceReset()}                  |
    4 |             TestType: Positive                                                   |
    5 \----------------------------------------------------------------------------------/
     1/***************************** TESTPOINT ******************************************\
     2*             TestFile: tst_psTrace04.c                                            *
     3*            TestPoint: psTrace functions{Testing psTraceReset()}                  *
     4*             TestType: Positive                                                   *
     5\**********************************************************************************/
    66
    77
Note: See TracChangeset for help on using the changeset viewer.