Revert "[asan] Make the global_metadata_darwin.ll test require El Capitan or newer"
authorRyan Govostes <rzg@apple.com>
Tue, 29 Mar 2016 18:27:24 +0000 (18:27 +0000)
committerRyan Govostes <rzg@apple.com>
Tue, 29 Mar 2016 18:27:24 +0000 (18:27 +0000)
llvm-svn: 264764

llvm/test/Instrumentation/AddressSanitizer/global_metadata_darwin.ll
llvm/test/lit.cfg

index ecf7830..8bf17ca 100644 (file)
@@ -2,7 +2,6 @@
 ; allowing dead stripping to be performed, and that the appropriate runtime
 ; routines are invoked.
 
-; REQUIRES: ld64_live_support
 ; RUN: opt < %s -asan -asan-module -S | FileCheck %s
 
 target datalayout = "e-m:o-i64:64-f80:128-n8:16:32:64-S128"
index 83cce65..c1a4499 100644 (file)
@@ -429,18 +429,6 @@ def have_ld64_plugin_support():
 if have_ld64_plugin_support():
     config.available_features.add('ld64_plugin')
 
-
-# Check if ld64 knows about live_support (OS X El Capital and newer).
-if config.host_os == 'Darwin':
-  try:
-    osx_version = subprocess.check_output(["sw_vers", "-productVersion"])
-    osx_version = tuple(int(x) for x in osx_version.split('.'))
-    if osx_version >= (10, 11):
-      config.available_features.add('ld64_live_support')
-  except:
-    pass
-
-
 # Ask llvm-config about assertion mode.
 try:
     llvm_config_cmd = subprocess.Popen(