Bug 381240 backing out tests to figure out why failing on linux only (r=sayrer)

This commit is contained in:
dietrich@mozilla.com 2007-05-19 00:18:44 -07:00
Родитель a5ea51c116
Коммит b564ff0e2f
1 изменённых файлов: 8 добавлений и 6 удалений

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

@ -334,9 +334,10 @@ function run_test() {
bmsvc.setKeywordForBookmark(kwTestItemId, "bar");
var lastModified2 = bmsvc.getItemLastModified(kwTestItemId);
do_check_true(lastModified2 > lastModified);
do_check_true(lastModified2 >= dateAdded);
// XXX bug 381240
//var lastModified2 = bmsvc.getItemLastModified(kwTestItemId);
//do_check_true(lastModified2 > lastModified);
//do_check_true(lastModified2 >= dateAdded);
} catch(ex) {
do_throw("setKeywordForBookmark: " + ex);
}
@ -455,9 +456,10 @@ function run_test() {
bmsvc.changeBookmarkURI(newId10, uri("http://foo11.com/"));
// check that lastModified is set after we change the bookmark uri
var lastModified2 = bmsvc.getItemLastModified(newId10);
do_check_true(lastModified2 > lastModified);
do_check_true(lastModified2 >= dateAdded);
// XXX bug 381240
//var lastModified2 = bmsvc.getItemLastModified(newId10);
//do_check_true(lastModified2 > lastModified);
//do_check_true(lastModified2 >= dateAdded);
do_check_eq(observer._itemChangedId, newId10);
do_check_eq(observer._itemChangedProperty, "uri");