mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 00:01:50 +00:00
** NOT PART OF THE BUILD **
Removing unnecessary files
This commit is contained in:
parent
218a44e67b
commit
961a52299c
@ -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. )
|
Loading…
Reference in New Issue
Block a user