mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Back out bug 1149174 since it turns out that the nsTArray range iterators are not stable after all
This commit is contained in:
parent
c64d6d2d70
commit
3d48004005
@ -1157,46 +1157,6 @@ static bool test_SetLengthAndRetainStorage_no_ctor() {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool test_range_based_for_loop_stable_iterator()
|
|
||||||
{
|
|
||||||
const int N = 10;
|
|
||||||
FallibleTArray<int> f;
|
|
||||||
AutoFallibleTArray<int, N> fauto;
|
|
||||||
|
|
||||||
InfallibleTArray<int> i;
|
|
||||||
AutoInfallibleTArray<int, N> iauto;
|
|
||||||
|
|
||||||
nsTArray<int> t;
|
|
||||||
nsAutoTArray<int, N> tauto;
|
|
||||||
|
|
||||||
#define DO_TEST(var) { \
|
|
||||||
var.AppendElement(2); \
|
|
||||||
var.AppendElement(3); \
|
|
||||||
var.AppendElement(4); \
|
|
||||||
int count = 0; \
|
|
||||||
for (const auto& elem : var) { \
|
|
||||||
if (elem == 2) { \
|
|
||||||
var.RemoveElementAt(1); \
|
|
||||||
} \
|
|
||||||
++count; \
|
|
||||||
} \
|
|
||||||
if (count != 3) { \
|
|
||||||
return false; \
|
|
||||||
} \
|
|
||||||
}
|
|
||||||
|
|
||||||
DO_TEST(f)
|
|
||||||
DO_TEST(fauto)
|
|
||||||
DO_TEST(i)
|
|
||||||
DO_TEST(iauto)
|
|
||||||
DO_TEST(t)
|
|
||||||
DO_TEST(tauto)
|
|
||||||
|
|
||||||
#undef DO_TEST
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
//----
|
//----
|
||||||
|
|
||||||
typedef bool (*TestFunc)();
|
typedef bool (*TestFunc)();
|
||||||
@ -1225,7 +1185,6 @@ static const struct Test {
|
|||||||
DECL_TEST(test_fallible),
|
DECL_TEST(test_fallible),
|
||||||
DECL_TEST(test_conversion_operator),
|
DECL_TEST(test_conversion_operator),
|
||||||
DECL_TEST(test_SetLengthAndRetainStorage_no_ctor),
|
DECL_TEST(test_SetLengthAndRetainStorage_no_ctor),
|
||||||
DECL_TEST(test_range_based_for_loop_stable_iterator),
|
|
||||||
{ nullptr, nullptr }
|
{ nullptr, nullptr }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user