Changeset 16888 for util

Show
Ignore:
Timestamp:
07/07/07 23:29:54 (17 months ago)
Author:
Darren_Duncan
Message:

the config file you make to get credit for smokes is now named 'smoker.yml' rather than '.smoker.yml' ... you will need to rename your copy of this file if you have it to avoid 'make smoke' breakage

Location:
util
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • util/PaP6-testing/conf.pl

    r16162 r16888  
    3232        return 0; 
    3333    } 
    34     my $fn = '.smoker.yml'; 
     34    my $fn = 'smoker.yml'; 
    3535    unless ( copy( $cn->{src_add_dn} . '/' . $fn, $cn->{temp_dn} ) ) { 
    3636        unlink( $cn->{temp_dn} . '/' . $fn ) if -e $cn->{temp_dn} . '/' . $fn; 
  • util/yaml_harness.pl

    r16194 r16888  
    1313# Package and global declarations 
    1414our @ISA = qw(Test::TAP::Model); 
    15 our $SMOKERFILE = ".smoker.yml"; 
     15our $SMOKERFILE = "smoker.yml"; 
    1616our %Config; 
    1717$ENV{TEST_ALWAYS_CALLER} = 1; 
     
    3636        --incude=I1,[I2,...]    Include files 
    3737        --exclude=E1,[E2,...]   Exclude files 
    38         --anonymous, -a         Do not include ~/.smoker.yml data in report 
     38        --anonymous, -a         Do not include ~/smoker.yml data in report 
    3939    } . "\n"; 
    4040    die $Usage if $Config{help};