checked in util/fix-tests.

This commit is contained in:
agentzh (章亦春) 2011-03-07 19:53:30 +08:00
parent 8efd8914af
commit ffd989f8bc
2 changed files with 68 additions and 0 deletions

1
.gitignore vendored
View File

@ -67,3 +67,4 @@ util/posts.sql
ngx_openresty-*
work/
reindex
t/*.t_

67
util/fix-tests Executable file
View File

@ -0,0 +1,67 @@
#!/usr/bin/env perl
use strict;
use warnings;
sub cd ($);
my $ver = `bash util/ver`;
chomp $ver;
cd "ngx_openresty-$ver/bundle";
opendir(my $dh, '.') or
die "cannot opendir .: $!";
my @dirs = grep { /\d+\.\d+/ && -d "$_" } readdir($dh);
closedir $dh;
cd '../../t';
opendir($dh, '.') or
die "cannot opendir .: $!";
my @t_files = grep { /\.t$/ } readdir($dh);
closedir $dh;
for my $t_file (@t_files) {
open my $in, $t_file or
die "Cannot open $t_file for reading: $!\n";
my $outfile = $t_file . '_';
open my $out, ">$outfile" or
die "Cannot open $outfile for writing: $!\n";
my $changed;
while (<$in>) {
for my $dir (@dirs) {
(my $pat = $dir) =~ s/\d.*//;
my $orig = $_;
if (s{\.\./$pat\S+}{../$dir}g && $orig ne $_) {
$changed++;
warn "\n- $orig";
warn "+ $_";
}
}
print $out $_;
}
close $out;
warn "Wrote t/$outfile\n";
close $in;
}
print join "\n", @dirs;
sub cd ($) {
my $dir = shift;
print("cd $dir\n");
chdir $dir or die "failed to cd $dir: $!\n";
}