Skip to content

Commit c1b51f0

Browse files
vitalybukatstellar
authored andcommitted
[msan] Disabled test failing on new GLIBC
(cherry picked from commit 118757a)
1 parent 578e500 commit c1b51f0

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

compiler-rt/test/lit.common.cfg.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ def get_macos_aligned_version(macos_vers):
491491
if not config.android and len(ver_lines) and ver_lines[0].startswith(b"ldd "):
492492
from distutils.version import LooseVersion
493493
ver = LooseVersion(ver_lines[0].split()[-1].decode())
494-
for required in ["2.27", "2.30"]:
494+
for required in ["2.27", "2.30", "2.34"]:
495495
if ver >= LooseVersion(required):
496496
config.available_features.add("glibc-" + required)
497497

compiler-rt/test/msan/preinit_array.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
// RUN: %clangxx_msan -O0 %s -o %t && %run %t
22

3+
// FIXME: Something changed in glibc 2.34, maybe earier.
4+
// UNSUPPORTED: glibc-2.34
5+
36
#include <sanitizer/msan_interface.h>
47

58
volatile int global;

0 commit comments

Comments
 (0)