@@ -46,7 +46,7 @@ TEST(IndexSubset, BitWordIndexAndOffset) {
46
46
std::make_pair (1u , 0u ));
47
47
}
48
48
49
- TEST (IndexSubset, /* rdar://problem/56338898 */ DISABLED_Equality ) {
49
+ TEST (IndexSubset, Equality ) {
50
50
TestContext ctx;
51
51
EXPECT_EQ (IndexSubset::get (ctx.Ctx , /* capacity*/ 5 , /* indices*/ {0 }),
52
52
IndexSubset::get (ctx.Ctx , /* capacity*/ 5 , /* indices*/ {0 }));
@@ -60,7 +60,7 @@ TEST(IndexSubset, /* rdar://problem/56338898 */DISABLED_Equality) {
60
60
IndexSubset::get (ctx.Ctx , /* capacity*/ 5 , /* indices*/ {}));
61
61
}
62
62
63
- TEST (IndexSubset, /* rdar://problem/56338898 */ DISABLED_Initializers ) {
63
+ TEST (IndexSubset, Initializers ) {
64
64
TestContext ctx;
65
65
// Default init.
66
66
EXPECT_EQ (IndexSubset::getDefault (ctx.Ctx , /* capacity*/ 5 ,
@@ -101,7 +101,7 @@ TEST(IndexSubset, /* rdar://problem/56338898 */DISABLED_Initializers) {
101
101
IndexSubset::get (ctx.Ctx , /* capacity*/ 0 , /* indices*/ {}));
102
102
}
103
103
104
- TEST (IndexSubset, /* rdar://problem/56338898 */ DISABLED_Bits ) {
104
+ TEST (IndexSubset, Bits ) {
105
105
TestContext ctx;
106
106
auto *indices1 = IndexSubset::get (ctx.Ctx , /* capacity*/ 5 ,
107
107
/* indices*/ {0 , 2 , 4 });
@@ -124,7 +124,7 @@ TEST(IndexSubset, /* rdar://problem/56338898 */DISABLED_Bits) {
124
124
EXPECT_FALSE (indices2->contains (4 ));
125
125
}
126
126
127
- TEST (IndexSubset, /* rdar://problem/56338898 */ DISABLED_Iteration ) {
127
+ TEST (IndexSubset, Iteration ) {
128
128
TestContext ctx;
129
129
// Test 1
130
130
{
@@ -164,7 +164,7 @@ TEST(IndexSubset, /* rdar://problem/56338898 */DISABLED_Iteration) {
164
164
}
165
165
}
166
166
167
- TEST (IndexSubset, /* rdar://problem/56338898 */ DISABLED_SupersetAndSubset ) {
167
+ TEST (IndexSubset, SupersetAndSubset ) {
168
168
TestContext ctx;
169
169
auto *indices1 = IndexSubset::get (ctx.Ctx , /* capacity*/ 5 ,
170
170
/* indices*/ {0 , 2 , 4 });
@@ -178,7 +178,7 @@ TEST(IndexSubset, /* rdar://problem/56338898 */DISABLED_SupersetAndSubset) {
178
178
EXPECT_TRUE (indices2->isSubsetOf (indices1));
179
179
}
180
180
181
- TEST (IndexSubset, /* rdar://problem/56338898 */ DISABLED_Insertion ) {
181
+ TEST (IndexSubset, Insertion ) {
182
182
TestContext ctx;
183
183
auto *indices1 = IndexSubset::get (ctx.Ctx , 5 , {0 , 2 , 4 });
184
184
EXPECT_EQ (indices1->adding (0 , ctx.Ctx ), indices1);
0 commit comments