Changeset 2040

Show
Ignore:
Timestamp:
02/29/08 12:12:09 (3 months ago)
Author:
joshr
Message:

change the order of the tests around.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • Swishetest/trunk/t/030-C030-medsm-xml.t

    r2036 r2040  
    2323    my $max_words = MinMax::min(1_000_000, ($ENV{MAX_INDEX_FILES} || 1_000_000)); 
    2424    # predict number of tests based on number of files in dictionaries and number of index types 
    25     #my @dicts = qw( data/C020-words-txt/words-linux-fc1.txt data/C020-words-txt/words-osx-10_3.txt); 
    26     my @dicts = qw( data/C020-words-txt/words-osx-10_3.txt data/C020-words-txt/words-linux-fc1.txt ); 
     25 
     26    # ONE ORDER 
     27    my @dicts = qw( data/C020-words-txt/words-linux-fc1.txt data/C020-words-txt/words-osx-10_3.txt); 
     28 
     29    # THE OTHER ORDER 
     30    #my @dicts = qw( data/C020-words-txt/words-osx-10_3.txt data/C020-words-txt/words-linux-fc1.txt ); 
     31 
    2732    my @dictwordcounts = map { `wc -l $_ | awk '{print \$1}' ` } @dicts; 
    2833    chomp(@dictwordcounts); 
    2934    my $numdictwords = sum( @dictwordcounts ); 
    30     my @filetypes = qw(html xml txt); 
     35    #my @filetypes = qw(html xml txt); 
     36    my @filetypes = qw(txt xml html); 
    3137    my $numdicts = scalar(@dicts); 
    3238    my $numfiletypes = scalar(@filetypes);