Skip to content

Commit 394f388

Browse files
committedSep 26, 2017
[XRay] Only run shared tests when 'enable_shared' is true
Follow-up to D38226. llvm-svn: 314191
1 parent f686a90 commit 394f388

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
 

‎clang/test/Driver/XRay/lit.local.cfg

+3
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@ if len(triple_set.intersection(supported_targets)) == 0:
1919
# Do not run for 'android' despite being linux.
2020
if len(triple_set.intersection(supported_oses)) == 0 or 'android' in triple_set:
2121
config.unsupported = True
22+
23+
if config.enable_shared:
24+
config.available_features.update(['enable_shared'])

‎clang/test/Driver/XRay/xray-shared-noxray.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// SHARED-NOT: {{clang_rt\.xray-}}
77
// STATIC: {{clang_rt\.xray-}}
88
//
9-
// REQUIRES: linux
9+
// REQUIRES: linux, enable_shared
1010
int foo() { return 42; }
1111

1212
#ifdef MAIN

0 commit comments

Comments
 (0)
Please sign in to comment.