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

Unified Diff: ui/gfx/geometry/vector3d_unittest.cc

Issue 2483493002: android: Don't run failing FontTest.DeriveFont; run gfx_unittests on bots. (Closed)
Patch Set: include build_config.h more Created 4 years, 1 month 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
« no previous file with comments | « ui/gfx/geometry/quad_unittest.cc ('k') | ui/gfx/platform_font_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/geometry/vector3d_unittest.cc
diff --git a/ui/gfx/geometry/vector3d_unittest.cc b/ui/gfx/geometry/vector3d_unittest.cc
index 3bec7a89e9ba918cd26bc8572b199eeb9641493f..c2cc99edd614c3b67aeb2d1a71137788e9ebcb77 100644
--- a/ui/gfx/geometry/vector3d_unittest.cc
+++ b/ui/gfx/geometry/vector3d_unittest.cc
@@ -8,6 +8,7 @@
#include <limits>
#include "base/macros.h"
+#include "build/build_config.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "ui/gfx/geometry/vector3d_f.h"
@@ -203,7 +204,13 @@ TEST(Vector3dTest, DotProduct) {
}
}
-TEST(Vector3dTest, CrossProduct) {
+#if defined(ARCH_CPU_ARM_FAMILY)
+// TODO(danakj): Make this pass on ARM, https://crbug.com/662556
+#define MAYBE_CrossProduct DISABLED_CrossProduct
+#else
+#define MAYBE_CrossProduct CrossProduct
+#endif
+TEST(Vector3dTest, MAYBE_CrossProduct) {
const struct {
gfx::Vector3dF expected;
gfx::Vector3dF input1;
« no previous file with comments | « ui/gfx/geometry/quad_unittest.cc ('k') | ui/gfx/platform_font_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698