From 316dd5ff9b36fdd3a25aef6b62b3f70c50fec21b Mon Sep 17 00:00:00 2001 From: "slamm%netscape.com" Date: Mon, 8 May 2000 23:34:50 +0000 Subject: [PATCH] CreateProfile() is no longer needed. mozilla creates the 'default' profile if none exists. --- tools/tinderbox/build-seamonkey-util.pl | 13 +++++++------ tools/tinderbox/tinder-defaults.pl | 2 +- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/tools/tinderbox/build-seamonkey-util.pl b/tools/tinderbox/build-seamonkey-util.pl index cd957233c516..ba7b9bf8fc08 100644 --- a/tools/tinderbox/build-seamonkey-util.pl +++ b/tools/tinderbox/build-seamonkey-util.pl @@ -18,7 +18,7 @@ use POSIX qw(sys_wait_h strftime); use Cwd; use File::Basename; # for basename(); use Config; # for $Config{sig_name} and $Config{sig_num} -$::UtilsVersion = '$Revision: 1.18 $ '; +$::UtilsVersion = '$Revision: 1.19 $ '; package TinderUtils; @@ -599,11 +599,12 @@ sub run_tests { # The mailnews test also adds a couple preferences to it. my $pref_file = "$build_dir/.mozilla/$Settings::MozProfileName/prefs.js"; - unless (-f $pref_file) { - print_log "Prefs file not found: $pref_file\n"; - print_log "Creating profile...\n"; - $test_result = CreateProfile($build_dir, $binary, $pref_file, 45); - } + # Mozilla now create the "default" profile if none exists. -slamm 5-8-00 + #unless (-f $pref_file) { + # print_log "Prefs file not found: $pref_file\n"; + # print_log "Creating profile...\n"; + # $test_result = CreateProfile($build_dir, $binary, $pref_file, 45); + #} # Mozilla alive test # diff --git a/tools/tinderbox/tinder-defaults.pl b/tools/tinderbox/tinder-defaults.pl index e316f80e7971..88e51b18988a 100644 --- a/tools/tinderbox/tinder-defaults.pl +++ b/tools/tinderbox/tinder-defaults.pl @@ -21,7 +21,7 @@ $BloatTest = 0; $DomToTextConversionTest = 0; $MailNewsTest = 0; $MozConfigFileName = 'mozconfig'; -$MozProfileName = 'mozProfile'; +$MozProfileName = 'default'; #- Set these to what makes sense for your system $Make = 'gmake'; # Must be GNU make