Bug 583985 - Disable leaky sync tests

This commit is contained in:
Paul O’Shannessy 2010-08-03 00:45:28 -07:00
Родитель 3f12eea216
Коммит c745f15b21
4 изменённых файлов: 12 добавлений и 0 удалений

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

@ -39,6 +39,9 @@ function check(expected) {
}
function run_test() {
//XXXzpao test is disabled (bug 583985)
return;
_("Starting with a clean slate of no bookmarks");
let store = new (new BookmarksEngine())._storeObj();
store.wipe();

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

@ -3,6 +3,9 @@ Cu.import("resource://services-sync/engines/bookmarks.js");
Cu.import("resource://services-sync/util.js");
function run_test() {
//XXXzpao test is disabled (bug 583985)
return;
_("Starting with a clean slate of no bookmarks");
let store = new (new BookmarksEngine())._storeObj();
store.wipe();

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

@ -3,6 +3,9 @@ Cu.import("resource://services-sync/engines/forms.js");
Cu.import("resource://services-sync/type_records/forms.js");
function run_test() {
//XXXzpao test is disabled (bug 583985)
return;
let store = new FormEngine()._store;
_("Remove any existing entries");

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

@ -2,6 +2,9 @@ _("Make sure queryAsync will synchronously fetch rows for a query asyncly");
Cu.import("resource://services-sync/util.js");
function run_test() {
//XXXzpao test is disabled (bug 583985)
return;
_("Using the form service to test queries");
function c(query) Svc.Form.DBConnection.createStatement(query);