Subversion Repositories DevTools

Rev

Rev 5827 | Rev 5867 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5827 Rev 5848
Line 6427... Line 6427...
6427
        my $search = JatsLocateFiles->new('FullPath' );
6427
        my $search = JatsLocateFiles->new('FullPath' );
6428
        $search->recurse($recurse);
6428
        $search->recurse($recurse);
6429
        $search->filter_in_re ( $_ ) foreach ( @dir_tree_include );
6429
        $search->filter_in_re ( $_ ) foreach ( @dir_tree_include );
6430
        $search->filter_out_re( $_ ) foreach ( @dir_tree_exclude );
6430
        $search->filter_out_re( $_ ) foreach ( @dir_tree_exclude );
6431
        $search->filter_out_re( '/\.svn/' );
6431
        $search->filter_out_re( '/\.svn/' );
-
 
6432
        $search->filter_out_re( '/\.git/' );
6432
        @elements = $search->search ( $dir_tree );
6433
        @elements = $search->search ( $dir_tree );
6433
        if ($strip_base){
6434
        if ($strip_base){
6434
            $strip_base = length( $dir_tree ) if ( $strip_base );
6435
            $strip_base = length( $dir_tree ) if ( $strip_base );
6435
        } elsif ($strip_dots) {
6436
        } elsif ($strip_dots) {
6436
            $strip_base = $strip_dots;
6437
            $strip_base = $strip_dots;
Line 9387... Line 9388...
9387
        #   Determine the maximum time that the automated test should run
9388
        #   Determine the maximum time that the automated test should run
9388
        #       Default is 30 minutes
9389
        #       Default is 30 minutes
9389
        #   Non-auto tests are not time limited
9390
        #   Non-auto tests are not time limited
9390
        #       
9391
        #       
9391
        my $timeout = '';
9392
        my $timeout = '';
9392
 
-
 
9393
        #
-
 
9394
        #   NOTE: Time out of unit tests has been disabled under Windows pending windows 
-
 
9395
        #         solution that works on Windows XP, Vista, 7, 8, 10, Server 2003 and server 2012.
-
 
9396
        #
-
 
9397
        if ($ENV{'GBE_UNIX'})
9393
        if ($pEntry->{'auto'})
9398
        {
9394
        {
9399
            if ($pEntry->{'auto'})
-
 
9400
            {
-
 
9401
                $timeout = 'timeout -Time:' . ($pEntry->{'maxtime'} || '30m') . ' ';
9395
            $timeout = 'timeout -Time:' . ($pEntry->{'maxtime'} || '30m') . ' ';
9402
            }
-
 
9403
        }
9396
        }
9404
        
9397
        
9405
        my $me = MakeEntry::New( *MAKEFILE, $test_name, '--Phony' );
9398
        my $me = MakeEntry::New( *MAKEFILE, $test_name, '--Phony' );
9406
 
9399
 
9407
        #
9400
        #