330848 Allow tinderbox to recognize Firefox by $Settings::BinaryName instead of $Settings::ProductName. On the Mac, ProductName is set to the codename (DeerPark, BonEcho), but BinaryName remains firefox-bin. With this change, tinderbox doesn't need to be made aware of each codename. r=preed

This commit is contained in:
mark%moxienet.com 2006-03-21 19:42:04 +00:00
Родитель 01ef3de28a
Коммит 8b693fd1a3
1 изменённых файлов: 6 добавлений и 3 удалений

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

@ -24,7 +24,7 @@ use Config; # for $Config{sig_name} and $Config{sig_num}
use File::Find ();
use File::Copy;
$::UtilsVersion = '$Revision: 1.315 $ ';
$::UtilsVersion = '$Revision: 1.316 $ ';
package TinderUtils;
@ -1186,7 +1186,10 @@ sub get_profile_dir {
my $profile_product_name = $Settings::ProductName;
$profile_product_name = "Mozilla" if ($profile_product_name eq "SeaMonkey");
$profile_product_name = "Firefox" if ($profile_product_name eq "DeerPark");
# $ProductName must be set to the codename for the Mac, so check
# $BinaryName and use the correct profile for browser.
$profile_product_name = 'Firefox' if ($Settings::BinaryName =~ /^firefox/);
my $profile_dir;
@ -1764,7 +1767,7 @@ sub run_all_tests {
unlink("$binary_dir/components/compreg.dat") or warn "$binary_dir/components/compreg.dat not removed\n";
if($Settings::RegxpcomTest) {
my $args;
if ($Settings::ProductName =~ /^(Firefox|Thunderbird|DeerPark)$/) {
if ($Settings::BinaryName =~ /^(firefox|thunderbird)/) {
$args = [$binary, "-register"];
} else {
$args = ["$binary_dir/regxpcom"];