Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1111)

Unified Diff: chrome/browser/ui/views/bookmarks/bookmark_context_menu_test.cc

Issue 8298007: Aura: unit_tests now run on Linux (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/bookmarks/bookmark_context_menu_test.cc
diff --git a/chrome/browser/ui/views/bookmarks/bookmark_context_menu_test.cc b/chrome/browser/ui/views/bookmarks/bookmark_context_menu_test.cc
index e41f8446e414765a44cda2c185bd54a7bfbe5bd1..50c4bf7f7cde9a4f8d5ffaafd2fa52ca9a2dd762 100644
--- a/chrome/browser/ui/views/bookmarks/bookmark_context_menu_test.cc
+++ b/chrome/browser/ui/views/bookmarks/bookmark_context_menu_test.cc
@@ -291,7 +291,13 @@ TEST_F(BookmarkContextMenuTest, EmptyNodesNullParent) {
controller.IsCommandEnabled(IDC_BOOKMARK_BAR_NEW_FOLDER));
}
-TEST_F(BookmarkContextMenuTest, CutCopyPasteNode) {
+// Fails on Aura, clipboard not yet implemented, http://crbug.com/100350
+#if defined(USE_AURA)
+#define MAYBE_CutCopyPasteNode FAILS_CutCopyPasteNode
+#else
+#define MAYBE_CutCopyPasteNode CutCopyPasteNode
+#endif
+TEST_F(BookmarkContextMenuTest, MAYBE_CutCopyPasteNode) {
const BookmarkNode* bb_node = model_->bookmark_bar_node();
std::vector<const BookmarkNode*> nodes;
nodes.push_back(bb_node->GetChild(0));

Powered by Google App Engine
This is Rietveld 408576698