Regression Test files.

Not part of the build.


git-svn-id: svn://10.0.0.236/trunk@73536 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
harishd%netscape.com
2000-06-29 21:41:02 +00:00
parent 23041af290
commit 36b124ebdc
24 changed files with 750 additions and 0 deletions

View File

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