Remove too hard for clang 3.4 (compiler Segmentation fault) test.

GitOrigin-RevId: e9fa868b86748a9b8e63df8097ea1a55268b64fa
This commit is contained in:
levlam 2019-04-26 06:03:14 +03:00
parent 719377a7de
commit 2be7ec9a34
1 changed files with 4 additions and 0 deletions

View File

@ -153,6 +153,7 @@ static void test_hands() {
}
}
#if !TD_CLANG
template <template <class> class RawSet>
static void test_stress() {
Random::Xorshift128plus rnd(123);
@ -222,6 +223,7 @@ static void test_stress() {
}
}
}
#endif
template <template <class> class RawSet>
static void test_speed() {
@ -249,11 +251,13 @@ TEST(SetWithPosition, hands) {
test_hands<SetWithPosition>();
}
#if !TD_CLANG
TEST(SetWithPosition, stress) {
test_stress<FastSetWithPosition>();
test_stress<OldSetWithPosition>();
test_stress<SetWithPosition>();
}
#endif
TEST(SetWithPosition, speed) {
test_speed<FastSetWithPosition>();