зеркало из https://github.com/mozilla/gecko-dev.git
Adding java test, whitespace cleanup
This commit is contained in:
Родитель
2602a83257
Коммит
ce0f999657
|
@ -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.60 $ ';
|
||||
$::UtilsVersion = '$Revision: 1.61 $ ';
|
||||
|
||||
package TinderUtils;
|
||||
|
||||
|
@ -741,6 +741,14 @@ sub run_all_tests {
|
|||
$binary, 0, 45);
|
||||
}
|
||||
|
||||
# Mozilla java test
|
||||
if ($Settings::JavaTest and $test_result eq 'success') {
|
||||
print_log "binary = $binary\n";
|
||||
$test_result = AliveTest("MozillaJavaTest", $build_dir,
|
||||
$binary, "http://java.sun.com", 45);
|
||||
}
|
||||
|
||||
|
||||
# Viewer alive test
|
||||
if ($Settings::ViewerTest and $test_result eq 'success') {
|
||||
$test_result = AliveTest("ViewerAliveTest", $build_dir,
|
||||
|
|
|
@ -16,12 +16,15 @@ $TestOnly = 0; # Only run tests, don't pull/build
|
|||
$BuildEmbed = 0; # After building seamonkey, go build embed app.
|
||||
|
||||
# Tests
|
||||
$AliveTest = 1;
|
||||
$ViewerTest = 0;
|
||||
$BloatTest = 0;
|
||||
$DomToTextConversionTest = 0;
|
||||
$MailNewsTest = 0;
|
||||
$EmbedTest = 0; # Assumes you wanted $BuildEmbed=1
|
||||
$AliveTest = 1;
|
||||
$JavaTest = 0;
|
||||
$ViewerTest = 0;
|
||||
$BloatTest = 0;
|
||||
$DomToTextConversionTest = 0;
|
||||
$MailNewsTest = 0; # Bit-rotted, currently not working.
|
||||
$EmbedTest = 0; # Assumes you wanted $BuildEmbed=1
|
||||
$LayoutPerformanceTest = 0;
|
||||
$StartupPerformanceTest = 0;
|
||||
|
||||
$BloatTestTimeout = 120; # seconds
|
||||
$DomTestTimeout = 45; # seconds
|
||||
|
|
Загрузка…
Ссылка в новой задаче