Bug 782404 - Unhide some skipped xpcshell-tests. r=jcranmer
This commit is contained in:
Родитель
f71aa62bf2
Коммит
be9c8d9852
|
@ -380,10 +380,6 @@ var otherTests = [
|
|||
];
|
||||
|
||||
function run_test() {
|
||||
// Only run on Windows.
|
||||
if (!("@mozilla.org/windows-registry-key;1" in Components.classes))
|
||||
return;
|
||||
|
||||
reset_font_prefs();
|
||||
|
||||
for (let [, [version, verifier]] in Iterator(kWindowsVersions)) {
|
||||
|
|
|
@ -11,4 +11,5 @@ tail = tail_base.js
|
|||
[test_viewWrapper_virtualFolder.js]
|
||||
[test_viewWrapper_virtualFolderCustomTerm.js]
|
||||
[test_windows_font_migration.js]
|
||||
skip-if = os != "win"
|
||||
[test_mailGlue_distribution.js]
|
||||
|
|
|
@ -140,13 +140,6 @@ function deleteIMAPServer(incomingServer) {
|
|||
|
||||
|
||||
function run_test() {
|
||||
// XXX BUG 553764 XXX
|
||||
// This unit test is relying on the random behavior of threads and so is
|
||||
// being disabled.
|
||||
dump("***\n***\nTHIS TEST IS DISABLED PER BUG 553764!\n***\n***\n");
|
||||
do_check_true(true);
|
||||
return;
|
||||
|
||||
do_test_pending();
|
||||
|
||||
registerAlertTestUtils();
|
||||
|
|
|
@ -163,8 +163,5 @@ function teardown() {
|
|||
}
|
||||
|
||||
function run_test() {
|
||||
// XXX Disabled due to intermittent failures, bug 502928 will fix.
|
||||
return 0;
|
||||
|
||||
async_run_tests(tests);
|
||||
}
|
||||
|
|
|
@ -162,11 +162,6 @@ var tests = [
|
|||
];
|
||||
|
||||
function run_test() {
|
||||
// XXX Disable on windows for now as it is failing there.
|
||||
if ("@mozilla.org/windows-registry-key;1" in Cc) {
|
||||
dump("Disabled on windows due to permanent failures\n");
|
||||
return;
|
||||
}
|
||||
async_run_tests(tests);
|
||||
}
|
||||
|
||||
|
|
|
@ -16,6 +16,8 @@ tail = tail_imap.js
|
|||
[test_filterNeedsBody.js]
|
||||
[test_imapAttachmentSaves.js]
|
||||
[test_imapAuthMethods.js]
|
||||
# Disabled per bug 553764
|
||||
skip-if = true
|
||||
[test_imapAutoSync.js]
|
||||
[test_imapContentLength.js]
|
||||
[test_imapCopyTimeout.js]
|
||||
|
@ -37,11 +39,15 @@ tail = tail_imap.js
|
|||
skip-if = os == 'mac'
|
||||
[test_listClosesDB.js]
|
||||
[test_localToImapFilter.js]
|
||||
# Disabled due to intermittent failures, bug 502928
|
||||
skip-if = true
|
||||
[test_localToImapFilterQuarantine.js]
|
||||
[test_mailboxes.js]
|
||||
[test_nsIMsgFolderListenerIMAP.js]
|
||||
[test_offlinePlayback.js]
|
||||
[test_offlineStoreLocking.js]
|
||||
# Doesn't currently work on Windows, bug 782625
|
||||
skip-if = os == "win"
|
||||
[test_partsOnDemand.js]
|
||||
[test_preserveDataOnMove.js]
|
||||
[test_saveImapDraft.js]
|
||||
|
|
|
@ -7,11 +7,6 @@
|
|||
var server;
|
||||
|
||||
function run_test() {
|
||||
// Currently, we're only doing a mac-specific test. If we extend
|
||||
// this test to include other platforms, we'd need to only do the
|
||||
// ':' file name test on the mac.
|
||||
if (! ("nsILocalFileMac" in Components.interfaces))
|
||||
return;
|
||||
// test file with ':' in the name (generated from Mozilla 1.8 branch).
|
||||
let bugmail = do_get_file("../../../data/bugmail-1");
|
||||
let bugmailmsf = do_get_file("../../../data/bugmail-1.msf");
|
||||
|
|
|
@ -22,12 +22,6 @@ var gMoveMailInbox;
|
|||
|
||||
function run_test()
|
||||
{
|
||||
// disable test on windows.
|
||||
if ("@mozilla.org/windows-registry-key;1" in Cc) {
|
||||
do_test_finished();
|
||||
return;
|
||||
}
|
||||
|
||||
loadLocalMailAccount();
|
||||
|
||||
let acctMgr = Cc["@mozilla.org/messenger/account-manager;1"]
|
||||
|
|
|
@ -4,10 +4,15 @@ tail = tail_local.js
|
|||
|
||||
[test_bug457168.js]
|
||||
[test_fileName.js]
|
||||
# Currently, we're only doing a mac-specific test. If we extend
|
||||
# this test to include other platforms, we'd need to only do the
|
||||
# ':' file name test on the mac.
|
||||
skip-if = os != "mac"
|
||||
[test_localFolder.js]
|
||||
[test_mailboxContentLength.js]
|
||||
[test_mailboxProtocol.js]
|
||||
[test_movemailDownload.js]
|
||||
skip-if = os == "win"
|
||||
[test_msgCopy.js]
|
||||
[test_msgIDParsing.js]
|
||||
[test_nsIMsgLocalMailFolder.js]
|
||||
|
|
|
@ -18,9 +18,6 @@ var server;
|
|||
var localserver;
|
||||
|
||||
function run_test() {
|
||||
// XXX The server doesn't support returning sizes!
|
||||
return;
|
||||
|
||||
type = "RFC 977";
|
||||
localserver = setupLocalServer(NNTP_PORT);
|
||||
server = makeServer(NNTP_RFC977_handler, daemon);
|
||||
|
|
|
@ -11,6 +11,8 @@ tail = tail_news.js
|
|||
[test_getNewsMessage.js]
|
||||
[test_internalUris.js]
|
||||
[test_nntpContentLength.js]
|
||||
# The server doesn't support returning sizes! (bug 782629)
|
||||
skip-if = true
|
||||
[test_nntpGroupPassword.js]
|
||||
[test_nntpPassword.js]
|
||||
[test_nntpPassword2.js]
|
||||
|
|
Загрузка…
Ссылка в новой задаче