Skip to content

Commit d8a5da5

Browse files
sahrensfacebook-github-bot
authored andcommitted
Fix some test stuff
Summary: missing header and platform. attributedstring builds now, but still fails because of T34990592 Reviewed By: mdvacca Differential Revision: D10349210 fbshipit-source-id: dcd163df9ac9a4fcb36399cb9f93dbf1b33c062d
1 parent af8c69e commit d8a5da5

File tree

7 files changed

+7
-6
lines changed

7 files changed

+7
-6
lines changed

ReactCommon/fabric/core/BUCK

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ fb_xplat_cxx_test(
6868
"-Wall",
6969
],
7070
contacts = ["[email protected]"],
71-
platforms = APPLE,
71+
platforms = (ANDROID,APPLE),
7272
deps = [
7373
"xplat//folly:molly",
7474
"xplat//third-party/gmock:gtest",

ReactCommon/fabric/debug/BUCK

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ fb_xplat_cxx_test(
7171
"-Wall",
7272
],
7373
contacts = ["[email protected]"],
74-
platforms = APPLE,
74+
platforms = (ANDROID, APPLE),
7575
deps = [
7676
"xplat//folly:molly",
7777
"xplat//third-party/gmock:gtest",

ReactCommon/fabric/debug/DebugStringConvertible.h

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
#pragma once
99

10+
#include <climits>
1011
#include <memory>
1112
#include <string>
1213
#include <vector>

ReactCommon/fabric/events/BUCK

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ fb_xplat_cxx_test(
7171
"-Wall",
7272
],
7373
contacts = ["[email protected]"],
74-
platforms = APPLE,
74+
platforms = (ANDROID,APPLE),
7575
deps = [
7676
"xplat//folly:molly",
7777
"xplat//third-party/gmock:gtest",

ReactCommon/fabric/graphics/BUCK

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ fb_xplat_cxx_test(
104104
"-Wall",
105105
],
106106
contacts = ["[email protected]"],
107-
platforms = APPLE,
107+
platforms = (ANDROID,APPLE),
108108
deps = [
109109
"xplat//folly:molly",
110110
"xplat//third-party/gmock:gtest",

ReactCommon/fabric/imagemanager/BUCK

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ fb_xplat_cxx_test(
114114
"-Wall",
115115
],
116116
contacts = ["[email protected]"],
117-
platforms = APPLE,
117+
platforms = (ANDROID, APPLE),
118118
deps = [
119119
"xplat//folly:molly",
120120
"xplat//third-party/gmock:gtest",

ReactCommon/fabric/uimanager/BUCK

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ fb_xplat_cxx_test(
7575
"-Wall",
7676
],
7777
contacts = ["[email protected]"],
78-
platforms = APPLE,
78+
platforms = (ANDROID, APPLE),
7979
deps = [
8080
"xplat//folly:molly",
8181
"xplat//third-party/gmock:gtest",

0 commit comments

Comments
 (0)