Removing unnecessary files
This commit is contained in:
harishd%netscape.com 2002-07-03 20:18:53 +00:00
Родитель 218a44e67b
Коммит 961a52299c
4 изменённых файлов: 0 добавлений и 60 удалений

Просмотреть файл

@ -1,20 +0,0 @@
#!/usr/bin/perl
use Cwd;
$curr_dir=`cd`;
open(OUTFILE,">file_list.txt") || die "Can't open file_list.txt $!";
opendir(D,".");
@files=readdir(D);
$curr_dir=~s/\\/\//g;
chomp($curr_dir);
foreach $file(@files) {
if($file=~m/\.*m/) {
print OUTFILE "$file\n";
}
}

Просмотреть файл

@ -1,10 +0,0 @@
To run parser regression test do the following:
1) cp ../html/*.html .
2) perl ListGen.pl ( this will create file_list.txt )
3) make ( build TestParser.exe )
4) perl TestParser.pl -b <drive>:/<path>/mozilla/dist/bin file_list.txt
( creates base line files. Note: Should be run _without_ your changes )
5) apply your patch.
6) perl TestParser.pl -v <drive>:/<path>/mozilla/dist/bin file_list.txt
( creates .v files and compares against base line. )

Просмотреть файл

@ -1,20 +0,0 @@
#!/usr/bin/perl
use Cwd;
$curr_dir=`cd`;
open(OUTFILE,">file_list.txt") || die "Can't open file_list.txt $!";
opendir(D,".");
@files=readdir(D);
$curr_dir=~s/\\/\//g;
chomp($curr_dir);
foreach $file(@files) {
if($file=~m/\.*m/) {
print OUTFILE "$file\n";
}
}

Просмотреть файл

@ -1,10 +0,0 @@
To run parser regression test do the following:
1) cp ../html/*.html .
2) perl ListGen.pl ( this will create file_list.txt )
3) make ( build TestParser.exe )
4) perl TestParser.pl -b <drive>:/<path>/mozilla/dist/bin file_list.txt
( creates base line files. Note: Should be run _without_ your changes )
5) apply your patch.
6) perl TestParser.pl -v <drive>:/<path>/mozilla/dist/bin file_list.txt
( creates .v files and compares against base line. )