From b564ff0e2f20a73c71626adc479a9aa1d33060af Mon Sep 17 00:00:00 2001 From: "dietrich@mozilla.com" Date: Sat, 19 May 2007 00:18:44 -0700 Subject: [PATCH] Bug 381240 backing out tests to figure out why failing on linux only (r=sayrer) --- .../places/tests/bookmarks/test_bookmarks.js | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/toolkit/components/places/tests/bookmarks/test_bookmarks.js b/toolkit/components/places/tests/bookmarks/test_bookmarks.js index 4fa67ea257cf..3b9634962f93 100644 --- a/toolkit/components/places/tests/bookmarks/test_bookmarks.js +++ b/toolkit/components/places/tests/bookmarks/test_bookmarks.js @@ -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");