Changeset 28076


Ignore:
Timestamp:
2013-08-16T17:32:04+12:00 (11 years ago)
Author:
ak19
Message:

Need to ignore the presence of the earliestDatestamp file in the test collection, since this has now been removed from the model-collections

File:
1 edited

Legend:

Unmodified
Added
Removed
  • other-projects/nightly-tasks/diffcol/trunk/diffcol/diffcol.pl

    r28071 r28076  
    576576        # Files to be skipped because they get generated on one OS but not the other
    577577        # On windows, files of the form col.invf.state.\d\d\d\d get generated (e.g. Small-HTML.invf.state.1228) that aren't there on linux
    578         my $skipfiles_re = qr/(\.invf\.state\.\d+$)|~$/; # Create a regex of all files to be skipped, see http://perldoc.perl.org/perlop.html
     578        my $skipfiles_re = qr/(\.invf\.state\.\d+$)|~$|earliestDatestamp$/; # Create a regex of all files to be skipped, see http://perldoc.perl.org/perlop.html
    579579        @aryInModel = grep { $_ !~ m/$skipfiles_re/ } @aryInModel; # http://stackoverflow.com/questions/174292/what-is-the-best-way-to-delete-a-value-from-an-array-in-perl
    580580        @aryInTest = grep { $_ !~ m/$skipfiles_re/ } @aryInTest;
Note: See TracChangeset for help on using the changeset viewer.