File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 8
8
// FIXME: https://code.google.com/p/address-sanitizer/issues/detail?id=186
9
9
// XFAIL: win32
10
10
11
+ // The test is expected to fail on OS X Yosemite and older
12
+ // UNSUPPORTED: osx-no-ld64-live_support
13
+
11
14
#include < cstdio>
12
15
13
16
// The structure of the test is:
Original file line number Diff line number Diff line change @@ -125,6 +125,12 @@ if config.host_os == 'Darwin':
125
125
if osx_version >= (10 , 11 ):
126
126
config .available_features .add ('osx-autointerception' )
127
127
config .available_features .add ('osx-ld64-live_support' )
128
+ else :
129
+ # The ASAN initialization-bug.cc test should XFAIL on OS X systems
130
+ # older than El Capitan. By marking the test as being unsupported with
131
+ # this "feature", we can pass the test on newer OS X versions and other
132
+ # platforms.
133
+ config .available_features .add ('osx-no-ld64-live_support' )
128
134
except :
129
135
pass
130
136
You can’t perform that action at this time.
0 commit comments