IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Sep 30, 2005, 4:22:26 PM (21 years ago)
Author:
desonia
Message:

changed psArrayGet/psArraySet/psArrayRemove to do proper reference counting.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/test/FullUnitTest.in

    r3888 r5216  
    55#  the script
    66#
    7 #  $Revision: 1.1 $  $Name: not supported by cvs2svn $
    8 #  $Date: 2005-05-12 01:35:35 $
     7#  $Revision: 1.2 $  $Name: not supported by cvs2svn $
     8#  $Date: 2005-10-01 02:22:19 $
    99#
    1010#  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    2323
    2424$recursive=1;
     25$jobs=1;
    2526# Assign variables based on the presence of command line options to the script
    2627# The ! option allows for --nooption to be set to zero
    2728# (e.g. --noverbose --recursive causes $verbose=0 and $recursive=1)
    2829GetOptions(
     30    "jobs!"      => \$jobs,
    2931    "verbose!"   => \$verbose,
    3032    "recursive!" => \$recursive,
     
    4143    where:
    4244        options =
     45            --jobs        number of threads to use for make
    4346            --help        Print this help text
    4447            --verbose     Display extra information to user
     
    241244
    242245        # Execute the make and save results
    243         $_ = join( "\n|| ", split( "\n", "\n" . `make tests` ) );
     246        $_ = join( "\n|| ", split( "\n", "\n" . `make -j $jobs tests` ) );
    244247
    245248        # Check the output of make for return value != 0 or any of the
Note: See TracChangeset for help on using the changeset viewer.